﻿.file-upload-zone {
    border: 2px dashed #ced4da;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: .2s ease;
}

    .file-upload-zone:hover,
    .file-upload-zone.drag-over {
        border-color: #0d6efd;
        background: #eef5ff;
    }

.file-upload-icon {
    font-size: 34px;
    margin-bottom: 8px;
}

.file-upload-title {
    font-weight: 600;
}

.file-upload-subtitle {
    color: #6c757d;
    font-size: 14px;
}

.file-upload-list {
    margin-top: 12px;
}

.file-upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 8px;
}

.file-upload-name {
    font-weight: 500;
    word-break: break-word;
}

.file-upload-size {
    color: #6c757d;
    font-size: 13px;
}

.file-upload-remove {
    border: none;
    background: transparent;
    color: #dc3545;
    font-size: 18px;
    line-height: 1;
}
