/* Styles for the Clock */
.header-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Add some space below the header */
}

.clock-container {
    display: flex;

    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.clock {
    width: 115px;
    height: 115px;
    border: 2px solid #545271;
    border-radius: 90%;
    position: relative;
    padding: 0.5rem;
    box-shadow: 0 20px 30px rgba(104, 75, 106, 0.65);
    background: #545271;
}

.outer-clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fefefc;
    box-shadow: 0 20px 10px rgba(62, 47, 63, 0.45);
    overflow: hidden;
}

    .outer-clock-face .marking {
        position: absolute;
        width: 6px;
        height: 100%;
        background: #b8b8c5;
        left: 49%;
    }

        .outer-clock-face .marking.marking-one {
            transform: rotate(30deg);
        }

        .outer-clock-face .marking.marking-two {
            transform: rotate(60deg);
        }

        .outer-clock-face .marking.marking-three {
            transform: rotate(120deg);
        }

        .outer-clock-face .marking.marking-four {
            transform: rotate(150deg);
        }

.inner-clock-face {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: #fefefc;
    border-radius: 50%;
    
}

    .inner-clock-face::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-left: -4px;
        margin-top: -4px;
        background: #4d4b63;
    
    }

.hand {
    width: 50%;
    height: 3px;
    background: #61afff;
    position: absolute;
    top: 50%;
    right: 50%;
    transform-origin: 100%;
    transform: rotate(90deg);
    border-radius: 6px;
}

    .hand.hour-hand {
        width: 25%;
        background: #000;
    }

    .hand.min-hand {
        height: 3px;
        width: 35%;
    }

    .hand.second-hand {
        background: #ff5e5e;
        width: 40%;
    }


.checkin-info-below-clock {
    margin-top: 15px;
    font-size: 12px;
    color: #333;
    padding-right: 10px;
}

    .checkin-info-below-clock .checkin-label,
    .checkin-info-below-clock .elapsed-label {
        font-weight: 100;
    }

    .checkin-info-below-clock .separator {
        margin: 0 10px;
    }


/* Optional: Adjust font sizes and styles */
.checkin-info-below-clock span {
    display: inline-block;
}