.upload-wrapper {
    width: 100%;
}

.upload-area {
    border: 2px dashed rgba(7, 88, 76, 0.7);
    border-radius: 12px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: .2s ease;
}

.upload-area:hover {
    border-color: rgba(7, 88, 76, 1);
}

.upload-text {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.input-file {
    display: none;
}


.file-btn {
    background-color: #1f5c4d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s ease;
}

.file-btn:hover {
    background-color: #144238;
}

/* список файлов */
.file-list {
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #cfdad7;
    font-size: 15px;
}

/* кнопка удалить */
.delete-btn {
    background-color: rgba(11, 142, 122, 1);
    color: rgba(231, 253, 250, 1);
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: .2s ease;
}

.delete-btn:hover {
    background-color: rgba(7, 95, 81, 1);
}

/* ошибка */
.upload-area.input-file-error {
    border-color: rgba(231, 74, 59, 1);
}

