.calendar-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Set baseline width for calendar container */
.calendar-outer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Set minimum width for columns */
.min-width-column {
    min-width: 250px;
}

/* Add spacing between columns */
.row {
    margin: 0 -0.75rem;
}

.row > div {
    padding: 0 0.75rem;
}

/* Day header styling */
.day-header {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.hearing-card {
    transition: all 0.3s ease;
}

.hearing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hearing-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.hearing-details {
    display: none;
    padding-top: 8px;
}

.hearing-details.show {
    display: block;
}

.status-text {
    font-style: italic;
    white-space: pre-wrap;
}

.client-data {
    font-size: 0.9rem;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.auth-message {
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.error-message {
    background: #fff3f3;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skeleton-loader {
    height: 100px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* Responsive breakpoints */
@media (max-width: 1200px) {
    .calendar-container .row {
        margin: 0;
    }

    .calendar-container .row>div {
        padding: 0;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #dee2e6;
    }

    .calendar-container .row>div:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .min-width-column {
        min-width: 0;
        /* Remove min-width on mobile */
    }
}

/* Large screens - horizontal scroll if needed */
@media (min-width: 1200px) {
    .calendar-container {
        overflow-x: auto;
    }

    .calendar-container .row {
        flex-wrap: nowrap;
    }

    /* Adjust day header styling for desktop */
    .day-header {
        margin: 0;
        background: none;
        padding: 1rem;
    }
}


