/* Стили для Модального Контейнера (Скрытие по умолчанию) */
.modal {
    display: none; /* Изначально скрыт */
    position: fixed; 
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    display: flex; /* Используем flex для центрирования */
    align-items: center;
    justify-content: center;
}

/* Стилизация Содержимого */
.modal-content {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    position: relative;
    text-align: left;
}

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

/* Стили для формы и кнопок */
#uploadButton {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#fileInput {
    margin-bottom: 20px;
}
