#overlay {
    position: fixed; /* Фиксированное положение поверх всего контента */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Убедитесь, что оверлей поверх всего */
}

#popup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 45%; /* Занимает 45% ширины экрана */
    max-width: 400px;
    text-align: center;
}

/* Стили для полей ввода (опционально) */
input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #8b8585;
    border-radius: 4px;
    box-sizing: border-box; /* Важно, чтобы padding не увеличивал ширину */
}

/* Стили для кнопок (опционально) */
button {
    background-color: #335866;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Скрываем оверлей по умолчанию */
#overlay {
    display: none;
}