﻿.upload-wrapper {
    max-width: 600px;
}

.upload-box {
    border: 2px dashed #5c7db8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    background: #f6f8fb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1b3a5d;
}

    .upload-box:hover {
        background: #eef3fa;
    }

.upload-icon {
    font-size: 18px;
}

.file-preview {
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #b7c6e1;
    background: #eef3fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #b7c6e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.file-size {
    color: #6b7d99;
    font-size: 12px;
}

.file-remove {
    cursor: pointer;
    color: #2f3e59;
    font-weight: bold;
    border: none;
    background: none;
}
