 .upload-container {
     background-color: #f0f2f5;
    
     /* padding: 2rem 0; */
     font-family: 'Segoe UI', sans-serif;
 }

 /* Top Border Accents + Gradients */
 .card {
     border: none;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     background: #ffffff;
     overflow: hidden;
     margin-bottom: 1.5rem;
 }
.download-Button{
    font-size: 12px;
}
 .upload-card {
     border-top: 6px solid #0067b9;
     background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
 }
.card-body {
    font-size: 14px !important;
}
.BannedListBold{
    font-weight: 700;
    font-size: 1.1rem;
}
.ProcessingTitle{
    color:black;
}

 .instruction-card {
     border-top: 6px solid #0067b9;
     background: linear-gradient(135deg, #ffffff 0%, #e0faff 100%);
 }

 .quick-card {
     border-top: 6px solid #0067b9;
     background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
 }

 .recent-card {
     border-top: 6px solid #0067b9;
     background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
 }

 .dangerButton {
     background-color: #0067b9;
     border: 1px solid #0067b9
 }

 .btn-upload {
     font-weight: 600;
     border-radius: 8px;
     transition: all 0.3s;
 }

 .btn-upload:hover:not(:disabled) {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
 }

 .Dangertop {
     border-top: 6px solid #0067b9;
 }

 .file-item {
     border-radius: 10px;
     border: 1px solid #edf2f7;
     margin-bottom: 0.5rem;
     transition: background 0.2s;
     background: #fff;
 }

 .file-item:hover {
     background-color: #f0f7ff;
     border-color: #0d6efd;
 }

 /* Custom Modal Styles */
 .modal-backdrop-custom {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1050;
 }

 .modal-content-custom {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     width: 400px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     text-align: center;
 }