/* BBA Calendar Widget Styles */
.bba-calendar-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: sans-serif;
}

.bba-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.bba-calendar-header .bba-nav-arrow {
    text-decoration: none;
    font-size: 24px;
    color: #007bff;
}

.bba-calendar-header .bba-current-month {
    font-size: 1.2em;
    font-weight: bold;
}

.bba-calendar-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
}

.bba-calendar-table th,
.bba-calendar-table td {
    border: 1px solid #dee2e6;
    text-align: center;
    padding: 15px;
}

.bba-calendar-table th {
    background-color: #f1f1f1;
}

.bba-day.available {
    background-color: #e9f5e9;
    cursor: pointer;
    font-weight: bold;
}

.bba-day.available:hover {
    background-color: #d4edda;
}

.bba-day.disabled {
    background-color: #f2f2f2;
    color: #ccc;
}

.bba-day.selected {
    background-color: #007bff;
    color: white;
}

#bba-time-slots-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

#bba-time-slots .time-slot {
    display: inline-block;
    padding: 8px 12px;
    margin: 5px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

#bba-time-slots .time-slot:hover {
    background-color: #0056b3;
}

#bba-time-slots .time-slot.selected {
    background-color: #28a745;
}


