/* Add here all your CSS customizations */
/* Стили для модального окна */
        .modal {
            display: none; /* Скрыть по умолчанию */
            position: fixed; /* Остаться на месте */
            z-index: 1; /* На переднем плане */
            left: 0;
            top: 0;
            width: 100%; /* Полная ширина */
            height: 100%; /* Полная высота */
            overflow: auto; /* Добавить прокрутку, если нужно */
            background-color: rgba(0, 0, 0, 0.4); /* Черный с прозрачностью */
        }

        /* Модальное содержимое */
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto; /* Центрирование */
            padding: 20px;
            border: 1px solid #888;
            width: 85%; /* Ширина */
            max-width: 600px; /* Максимальная ширина */
        }

        /* Кнопка закрытия */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: red; /* Цвет при наведении */
            text-decoration: none;
            cursor: pointer;
        }
		.modal-backdrop {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,.5);
            align-items: center; justify-content: center; z-index: 1000;
        }