.custom-upload-wrapper {
 border: 2px dashed #ff8c00 !important;
    background-color: rgba(30, 41, 59, 0.85) !important; /* 🔥 more visible */
    
    min-height: 160px;
    width: 100%;

    border-radius: 12px;
    padding: 20px;

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

    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;

    position: relative;
}
.custom-upload-wrapper h4 {
    color: #f1f5f9; /* brighter */
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.custom-upload-wrapper p {
    color: #cbd5f5; /* 🔥 more visible than before */
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.file-name {
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 500;
}
.file-size {
    font-size: 11px;
    color: #94a3b8;
}
.file-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    background: #1e293b;
    border-radius: 10px;
    border: 1px solid #334155;

    color: #e2e8f0;
}
.file-row:hover {
    background: #273449;
    border-color: #475569;
}
.file-count {
    color: #94a3b8;
    font-size: 12px;
}
.custom-upload-wrapper:hover {
    border-color: #ffb84d;
    background-color: rgba(30, 41, 59, 0.9);
    transform: translateY(-2px);
}
.custom-upload-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(255, 140, 0, 0.08);
    pointer-events: none;
}
.custom-upload-wrapper {
   
}