/* Modern KYC Portal Styles */
:root {
    --kyc-primary: #667eea;
    --kyc-secondary: #764ba2;
    --kyc-success: #00d4aa;
    --kyc-warning: #fbbf24;
    --kyc-danger: #ef4444;
    --kyc-dark: #1a1d29;
    --kyc-light: #f8fafc;
    --kyc-border: rgba(255, 255, 255, 0.1);
}

/* KYC Header */
.kyc-header {
    background: linear-gradient(135deg, var(--kyc-primary) 0%, var(--kyc-secondary) 100%);
    padding: 2rem 0;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.header-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0.5rem 0 0 0;
}

/* Main Content */
.kyc-main {
    background: var(--kyc-dark);
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

/* KYC Status Card */
.kyc-status-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--kyc-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.status-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--kyc-warning);
    color: white;
}

.status-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.status-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: var(--kyc-warning);
    border: 1px solid var(--kyc-warning);
}

.badge.verified {
    background: rgba(0, 212, 170, 0.2);
    color: var(--kyc-success);
    border: 1px solid var(--kyc-success);
}

.badge.unverified {
    background: rgba(239, 68, 68, 0.2);
    color: var(--kyc-danger);
    border: 1px solid var(--kyc-danger);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--kyc-primary), var(--kyc-secondary));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step.active .step-circle {
    background: var(--kyc-primary);
    color: white;
}

.step.completed .step-circle {
    background: var(--kyc-success);
    color: white;
}

.step span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--kyc-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.benefits-section h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--kyc-primary), var(--kyc-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.benefit-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Requirements Section */
.requirements-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--kyc-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.requirements-section h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--kyc-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.requirement-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--kyc-primary), var(--kyc-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.requirement-content {
    flex: 1;
}

.requirement-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.requirement-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.requirement-status {
    font-size: 1.2rem;
}

.text-warning {
    color: var(--kyc-warning);
}

.text-success {
    color: var(--kyc-success);
}

/* Action Section */
.action-section {
    text-align: center;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--kyc-primary), var(--kyc-secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.help-section {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.help-section a {
    color: var(--kyc-primary);
    text-decoration: none;
}

.help-section a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--kyc-dark);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    border: 1px solid var(--kyc-border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--kyc-border);
}

.modal-header h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 2rem;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--kyc-primary);
    margin-bottom: 1rem;
}

.loading-spinner p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-title h1 {
        font-size: 2rem;
    }
    
    .status-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .kyc-main {
        padding: 2rem 0;
    }
    
    .kyc-status-card,
    .benefits-section,
    .requirements-section {
        padding: 1.5rem;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* File Upload Styles */
.verification-form {
    padding: 20px 0;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.upload-section {
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg-tertiary);
}

.upload-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.upload-header i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.upload-header h5 {
    margin: 0;
    flex: 1;
    color: var(--text-primary);
}

.required {
    background: var(--error-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Modal Improvements */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1d29;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 95%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #2d3748;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #2d3748;
    background: #1a1d29;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 2rem;
    background: #1a1d29;
}

/* Verification Form Styling */
.verification-form {
    padding: 0;
}

.verification-form h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.form-description {
    color: #a0aec0;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Upload Section Styling */
.upload-section {
    margin-bottom: 2rem;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    background: #252a3a;
}

.upload-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.upload-header i {
    font-size: 1.2rem;
    color: #4299e1;
    width: 20px;
}

.upload-header h5 {
    margin: 0;
    flex: 1;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.required {
    background: #e53e3e;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Upload Area Styling */
.upload-area {
    border: 2px dashed #4a5568;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: #1a1d29;
}

.upload-area.drag-over {
    border-color: #4299e1;
    background: rgba(66, 153, 225, 0.1);
}

.upload-placeholder {
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-placeholder:hover {
    background: rgba(66, 153, 225, 0.05);
}

.upload-placeholder i {
    font-size: 2.5rem;
    color: #4299e1;
    margin-bottom: 1rem;
    display: block;
}

.upload-placeholder p {
    margin: 0.5rem 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.upload-placeholder small {
    color: #a0aec0;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.5rem;
}

/* File Preview Styling */
.upload-preview {
    display: none;
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #2d3748;
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.file-preview img {
    border-radius: 8px;
    border: 1px solid #4a5568;
    max-width: 120px;
    max-height: 90px;
    object-fit: cover;
}

/* Add mobile-safe preview styles for KYC images */
.kyc-image-preview-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 8px;
  background: #0f131a; /* optional, matches dark theme */
  border-radius: 8px;
}

.kyc-image-preview {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  /* Cap height on desktop too, feels better than unlimited */
  max-height: 60vh;
}

/* Tighter cap on small screens */
@media (max-width: 768px) {
  .kyc-image-preview {
    max-height: 40vh;
  }
}

/* Very small screens (e.g., narrow phones) */
@media (max-width: 480px) {
  .kyc-image-preview {
    max-height: 35vh;
  }
}

/* If your previews are inside a modal or a specific section, apply this container for spacing */
.kyc-preview-group {
  display: grid;
  grid-template-columns: 1fr; /* single column on mobile by default */
  gap: 12px;
}

@media (min-width: 992px) {
  .kyc-preview-group {
    grid-template-columns: 1fr 1fr; /* front/back side by side on larger screens */
  }
}

.pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.file-info {
    flex: 1;
}

.file-info p {
    margin: 0 0 0.25rem 0;
    color: #ffffff;
    font-size: 0.9rem;
}

.file-info p:last-child {
    color: #a0aec0;
    font-size: 0.8rem;
}

.btn-remove {
    background: #e53e3e;
    color: #ffffff;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-remove:hover {
    background: #c53030;
    transform: translateY(-1px);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2d3748;
}

.modal-actions .btn {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #4a5568;
    color: #ffffff;
    border: 1px solid #4a5568;
}

.btn-secondary:hover {
    background: #2d3748;
    border-color: #2d3748;
}

.btn-primary {
    background: #4299e1;
    color: #ffffff;
    border: 1px solid #4299e1;
}

.btn-primary:hover:not(:disabled) {
    background: #3182ce;
    border-color: #3182ce;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: #2d3748;
    border-color: #2d3748;
    color: #718096;
    cursor: not-allowed;
    transform: none;
}

.btn-ready {
    background: #38a169 !important;
    border-color: #38a169 !important;
    color: #ffffff !important;
}

.btn-ready:hover {
    background: #2f855a !important;
    border-color: #2f855a !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    .upload-section {
        padding: 1rem;
    }
    
    .upload-placeholder {
        padding: 1.5rem 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .file-preview {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .kyc-main {
        padding: 2rem 0;
    }
    
    .kyc-status-card,
    .benefits-section,
    .requirements-section {
        padding: 1.5rem;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* File Upload Styles */
.verification-form {
    padding: 20px 0;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.upload-section {
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg-tertiary);
}

.upload-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.upload-header i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.upload-header h5 {
    margin: 0;
    flex: 1;
    color: var(--text-primary);
}

.required {
    background: var(--error-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.modal-actions .btn {
    min-width: 120px;
}

.btn-ready {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

/* File Preview Styles */
.file-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.file-preview img {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
}

.file-info {
    flex: 1;
}

.file-info p {
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.file-info small {
    color: var(--text-secondary);
}

.btn-remove {
    background: var(--error-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.upload-placeholder {
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
}

.upload-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.upload-placeholder p {
    margin: 10px 0 5px 0;
    color: var(--text-primary);
    font-weight: 500;
}

.upload-placeholder small {
    color: var(--text-secondary);
}

.upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.upload-preview {
    padding: 20px;
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 8px;
}

.file-info {
    flex: 1;
}

.file-info p {
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.file-info p:last-child {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.btn-remove {
    background: var(--error-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.btn-remove:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
}