.upload-container {
    width: 100%;
}

.upload-box {
    width: 100%;
    /* min-height: 150px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1.5px dashed #dc3545 !important;
    border-radius: 10px;
    /* box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.15); */

    padding: 5px;

    text-align: center;

    cursor: pointer;

    transition: all 0.2s ease;
}

.upload-box.upload-success {
    border: 1.5px solid #078456 !important;
    border-radius: 10px;
    box-shadow: 0 0 0 0.15rem rgba(7, 132, 86, 0.10);
}

.upload-box.is-invalid {
    border: 1.5px dashed #dc3545 !important;
    border-radius: 10px;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.15);
}

.upload-box:hover {
    border-color: #0d6efd;
    background-color: #f0f6ff;
}

.upload-box.dragover {
    border-color: #0d6efd;
    background-color: #e7f1ff;
    transform: scale(1.01);
}

.upload-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.file-input {
    display: none;
}

.file-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 5px 7px;
    background-color: #fff;
}

.file-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 12px;
    color: #6c757d;
}

.remove-file {
    border: 0;
    background: transparent;
    color: #dc3545;
    cursor: pointer;
}

.file-progress {
    margin-top: 10px;
}

.file-progress .progress {
    height: 6px;
}

.file-progress-text {
    font-size: 12px;
    color: #6c757d;
}