/* Основные стили модального окна */
.client-booking-modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed; /* Оставаться на месте */
    z-index: 100000; /* Поверх всего */
    left: 0;
    top: 0;
    width: 100%; /* Полная ширина */
    height: 100%; /* Полная высота */
    overflow: auto; /* Включить прокрутку, если контент слишком большой */
    background-color: rgba(0,0,0,0.6); /* Черный фон с прозрачностью */
    backdrop-filter: blur(5px); /* Эффект размытия */
}

/* Содержимое модального окна */
.client-modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% сверху и по центру */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Ширина на маленьких экранах */
    max-width: 500px; /* Максимальная ширина */
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    position: relative;
}

/* Кнопка закрытия */
.close-client-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 5px;
}

.close-client-modal:hover,
.close-client-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Стили полей формы */
.client-booking-modal .form-field {
    margin-bottom: 15px;
}

.client-booking-modal .form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.client-booking-modal .form-field input[type="text"],
.client-booking-modal .form-field input[type="tel"],
.client-booking-modal .form-field input[type="email"],
.client-booking-modal .form-field input[type="date"],
.client-booking-modal .form-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Важно для корректной ширины */
    font-size: 14px;
}

.client-booking-modal .form-field input:focus,
.client-booking-modal .form-field select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
    outline: none;
}

/* Кнопка отправки */
.client-booking-modal .submit .button-primary {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.client-booking-modal .submit .button-primary:hover {
    background-color: #005177;
}

/* Разделитель */
.client-booking-modal hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

/* Стили для сообщений об успехе/ошибке */
.booking-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.booking-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.open-client-booking-modal{
    background-color: #151515;
    color:white;
    font-family: Noto Sans;
font-weight: 500;
font-style: Medium;
font-size: 18.95px;
line-height: 124%;
letter-spacing: 0%;
padding:25px 33px;
border-radius: 13px;
}