/* Custom styles for the scheduling system */
body {
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 20px;
}

.card-header {
    font-weight: bold;
}

/* Availability Grid */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    padding-top: 10px;
}

.grid-cell {
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.grid-cell-time {
    font-size: 1.1em;
}

.grid-cell-count {
    font-size: 0.9em;
    margin-top: 4px;
}

.grid-cell-available {
    background-color: #28a745; /* Bootstrap Success */
}

.grid-cell-partial {
    background-color: #ffc107; /* Bootstrap Warning */
    color: #212529;
}

.grid-cell-full {
    background-color: #dc3545; /* Bootstrap Danger */
}
