html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.text-bg-blue {
    color: #fff !important;
    background-color: rgb(0, 78, 117) !important;
}

a.hover-black:hover {
    color: grey !important;
}

.border-md-right {
    border-right: 1px solid silver;
}

@media (max-width: 768px) {

    .border-md-right {
        border-right: none;
    }
}

.padding-0 {
    padding: 0 !important;
}

    .padding-0 .float-right {
        float: right
    }

    .padding-0 .float-left {
        float: left
    }

.noborder {
    border: none;
}

dl.list-group-custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0.5em;
    grid-auto-flow: column;
}

.status-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to the next line */
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between groups */
}

.status-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the circle and the arrow */
    width: 150px;
}

.status-item {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 50px;
    border-radius: 6%;
    border: 1px solid black;
}

.status-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.status-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}
