.user-hours-widget {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
    width: 90%;
}

.user-hours-widget:hover {
    background: linear-gradient(45deg, #8000FF, #0400FF);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.6);
    color: white;
}

.hours-section {
    display: flex;
    align-items: flex-start; /* Align items at the top */
    gap: 35px;
    margin-bottom: 10px; /* Space between sections */
}

.hours-content {
    display: block; /* Ensure block stacking for label and value */
}

.hours-label {
    font-size: 1.2em;
    margin-bottom: 4px; /* Space between label and value */
}

.hours-value {
    /* No additional styling needed, will naturally drop below */
}

.hourglass-icon {
    width: 24px;
    height: 24px;
    fill: #000;
    margin-right: 8px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.user-hours-widget:hover .hourglass-icon {
    fill: #fff; /* Ensure icon color changes on hover to match text */
}

@media (max-width: 768px) {
    .user-hours-widget {
        max-width: 100%;
        width: 95%;
        bottom: 10px;
        padding: 15px;
    }
    .hours-section {
        gap: 20px;
    }
    .hours-label {
        font-size: 1em;
    }
}