/* --- Стили календаря FullCalendar (оставь, если были) --- */
.fc {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 30px auto;
    font-size: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    overflow: visible !important;
}
.fc-daygrid-day,
.fc-day {
    min-height: 44px !important;
    height: 48px !important;
    padding: 0 !important;
    vertical-align: middle !important;
    overflow: hidden !important;
}
.fc-daygrid-day-frame {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
}
.fc-scrollgrid-sync-table {
    width: 100% !important;
}
.fc .fc-toolbar-title {
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
}
.fc th, .fc td {
    border: 1px solid #e2e2e2 !important;
}
.fc-col-header-cell {
    font-weight: 500 !important;
}
.fc-day-other {
    background: #fafafa !important;
    color: #bdbdbd !important;
}
.fc-scroller-harness,
.fc-scroller {
    overflow: visible !important;
    max-height: none !important;
}
/* --- Подсветка выбранного дня --- */
.fc-daygrid-day.fc-selected-day {
    background: #343A90 !important;
    border-radius: 8px !important;
    transition: background 0.08s linear;
}
.fc-daygrid-day.fc-selected-day .fc-daygrid-day-number {
    color: #fff !important;
    transition: color 0.08s linear;
}
.fc-daygrid-day:not(.fc-selected-day):hover {
    background: #f0f3ff !important;
    cursor: pointer;
    border-radius: 8px !important;
}

/* --- СТИЛИ ФОРМЫ ЗАПИСИ --- */
#abit-form-container {
    margin-top: 20px;
    
    font-size: 20px;
    color: #343A90;
    width: 100%;
    display: flex;
    justify-content: center;
}
#abit-booking-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 0;
}
.abit-form-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: 100%;
    justify-content: center;
    margin-bottom: 22px;
}
.abit-form-row select,
.abit-form-row input[type="text"],
.abit-form-row input[type="tel"] {
    height: 40px;
    font-size: 16px;
    padding: 0 16px;
    border: 1px solid #c3c3c3;
    border-radius: 7px;
    background: #fafaff;
    color: #343A90;
    min-width: 150px;
    max-width: 220px;
    outline: none;
    transition: border-color 0.14s;
    box-sizing: border-box;
    flex: 1 1 0;
}
.abit-form-row select:focus,
.abit-form-row input:focus {
    border-color: #343A90;
}
#abit-booking-form button {
    height: 44px;
    background: #343A90;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.16s;
    padding: 0 38px;
    margin: 0 auto;
    display: block;
}
#abit-booking-form button:hover {
    background: #22275a;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 900px) {
    .abit-form-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .abit-form-row select,
    .abit-form-row input {
        min-width: 120px;
        max-width: 100%;
    }
}

    .abit-form-row select,
    .abit-form-row input[type="text"],
    .abit-form-row input[type="tel"] {
        width: 100% !important;
        max-width: 100% !important;
    }
    #abit-booking-form button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .abit-form-row {
        flex-direction: column !important;
        align-items: stretch;
    }
    .abit-form-row select,
    .abit-form-row input[type="text"],
    .abit-form-row input[type="tel"] {
        width: 100% !important;
        max-width: 100% !important;
        height: 40px !important;
        font-size: 16px;
        padding: 6px 12px;
    }
    #abit-booking-form button {
        width: 100%;
    }
}

.abit-form-checkbox {
    
    font-size: 14px;
    color: #343A90;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}
.abit-form-checkbox input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
    vertical-align: middle;
}
.abit-form-checkbox a {
    color: #343A90;
    text-decoration: underline;
}

.abit-form-checkbox label {
    font-family: 'Roboto', sans-serif;
}


.abit-form-checkbox label {
    font-family: 'Roboto', sans-serif !important;
}
