/* Registration Page Styles - Dark Theme */

.registration-section {
    padding: 80px 20px;
    background: #0a0a0a;
    min-height: 100vh;
}

.registration-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Registration Info */
.registration-info {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.registration-info h2 {
    color: #dc3545;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.2);
}

.info-card h3 {
    color: #dc3545;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Fee Structure */
.fee-structure {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.fee-type {
    font-weight: 500;
    color: #e0e0e0;
}

.fee-amount {
    font-weight: 700;
    font-size: 1.2rem;
    color: #dc3545;
    transition: all 0.3s ease;
}

/* Included Items */
.included-items {
    list-style: none;
    padding: 0;
}

.included-items li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.included-items i {
    color: #dc3545;
    font-size: 0.9rem;
}

/* Notes List */
.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.notes-list li::before {
    content: "•";
    color: #dc3545;
    position: absolute;
    left: 0;
}

/* Registration Form */
.registration-form {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.registration-form h2 {
    color: #dc3545;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #dc3545;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #555;
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #3a2a2a 0%, #4a3333 100%);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #dc3545;
    background: linear-gradient(135deg, #3a2a2a 0%, #4a2a2a 100%);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.8;
}

/* Enhanced select styling */
.form-group select {
    cursor: pointer;
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 4 5'><path d='M2 0L0 2h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.form-group select:focus {
    background: linear-gradient(135deg, #3a2a2a 0%, #4a3333 100%);
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='0 0 4 5'><path d='M2 0L0 2h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.form-group select:hover {
    background: linear-gradient(135deg, #353535 0%, #404040 100%);
    border-color: #888;
}

/* Option styling */
.form-group select option {
    background: #2a2a2a;
    color: #ffffff;
    padding: 12px;
    border: none;
    font-size: 1rem;
    line-height: 1.4;
}

.form-group select option:hover,
.form-group select option:focus {
    background: #dc3545;
    color: #ffffff;
}

.form-group select option:checked {
    background: #dc3545;
    color: #ffffff;
    font-weight: 600;
}

/* Custom dropdown for better cross-browser support */
.form-group.select-wrapper {
    position: relative;
}

.form-group.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ffffff;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 3;
}

.form-group.select-wrapper:hover::after {
    border-top-color: #dc3545;
}

.form-group.select-wrapper select:focus + ::after {
    border-top-color: #dc3545;
    transform: translateY(-50%) rotate(180deg);
}

/* Disabled select styling */
.form-group select:disabled {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    color: #666;
    cursor: not-allowed;
    border-color: #444;
}

.form-group select:disabled option {
    background: #1a1a1a;
    color: #666;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #dc3545;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    color: #e0e0e0;
}

.checkbox-group a {
    color: #dc3545;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Fee Display - Enhanced Dark Theme */
.fee-display {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid #555;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fee-breakdown,
.fee-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.fee-breakdown span:first-child,
.fee-total span:first-child {
    color: #e0e0e0;
}

.fee-breakdown span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.fee-total {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    padding-top: 1rem;
    border-top: 2px solid #dc3545;
    margin-bottom: 0;
    background: rgba(220, 53, 69, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.fee-total span:last-child {
    background: linear-gradient(135deg, #dc3545, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

/* 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.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    border: 1px solid #333;
    margin: 5% auto;
    border-radius: 15px;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #dc3545 0%, #b71c1c 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

/* UPI Payment Modal Styles */
.upi-modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.upi-payment-content {
    padding: 0;
}

.payment-step {
    display: none;
    padding: 2rem;
}

.payment-step.active {
    display: block;
}

.payment-step h3 {
    color: #dc3545;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* QR Code Styles */
.qr-code-container {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 10px;
    border: 2px dashed #444;
}

.qr-code-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border: 3px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-caption {
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.qr-code-fallback {
    padding: 2rem;
    color: #ccc;
}

.qr-code-fallback i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #555;
}

.loading-spinner {
    padding: 2rem;
    color: #ccc;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message {
    padding: 2rem;
    color: #dc3545;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Payment Details */
.payment-details {
    margin: 1.5rem 0;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: #ccc;
}

.detail-row strong {
    color: #dc3545;
    font-weight: 600;
}

/* Payment Instructions */
.payment-instructions {
    background: #2a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.payment-instructions h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    color: #e0e0e0;
}

.payment-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Transaction Form */
.transaction-form {
    margin: 1.5rem 0;
}

.transaction-form .form-group {
    margin-bottom: 1.5rem;
}

.transaction-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #dc3545;
    font-weight: 500;
}

.transaction-form input[type="text"],
.transaction-form input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.transaction-form input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.25);
}

.transaction-form small {
    display: block;
    margin-top: 0.25rem;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step-actions .btn {
    flex: 1;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.registration-id {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #28a745;
}

.registration-id strong {
    color: #2c5aa0;
}

/* Team Section Styles */
.team-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.team-members {
    margin-top: 1rem;
}

.team-note {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-member-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.team-member-input label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member-input input {
    margin-bottom: 0.5rem;
}

.team-member-input input:last-child {
    margin-bottom: 0;
}

/* Stripe Elements Styles */
.stripe-element {
    background: white;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stripe-element.StripeElement--focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
}

.stripe-element.StripeElement--invalid {
    border-color: #dc3545;
}

.stripe-errors {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Payment Info Styles */
.payment-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feature i {
    color: #2c5aa0;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

/* Verification Status Styles */
.verification-status {
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.verification-status.verifying {
    background-color: #e3f2fd;
    border: 1px solid #2196f3;
    color: #1976d2;
}

.verification-status.verified {
    background-color: #e8f5e8;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.verification-status.pending {
    background-color: #fff3e0;
    border: 1px solid #ff9800;
    color: #f57c00;
}

.verification-status.failed {
    background-color: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

.verification-info, .verification-attempt {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    margin: 8px 0;
    border-left: 4px solid #2196f3;
}

.verification-attempt {
    border-left-color: #ff9800;
}

.verification-info h4, .verification-attempt h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.verification-info p, .verification-attempt p {
    margin: 4px 0;
    font-size: 13px;
    color: #666;
}

.payment-success, .payment-pending, .payment-failed {
    text-align: center;
    padding: 30px 20px;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.pending-icon {
    font-size: 64px;
    color: #ff9800;
    margin-bottom: 20px;
}

.error-icon {
    font-size: 64px;
    color: #f44336;
    margin-bottom: 20px;
}

.support-info {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    text-align: left;
}

.support-info p {
    margin: 5px 0;
    font-size: 14px;
}

.verification-details {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #fafafa;
    border-radius: 6px;
    margin: 10px 0;
}

/* Real-time status updates */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-indicator.verifying {
    background: #e3f2fd;
    color: #1976d2;
}

.status-indicator.verified {
    background: #e8f5e8;
    color: #2e7d32;
}

.status-indicator.pending {
    background: #fff3e0;
    color: #f57c00;
}

.status-indicator.failed {
    background: #ffebee;
    color: #c62828;
}

/* Spinner animation for verifying status */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #4caf50;
}

.notification.error {
    background: #f44336;
}

.notification.info {
    background: #2196f3;
}

.notification.warning {
    background: #ff9800;
}

/* Admin verification controls */
.verification-controls {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.btn-verify {
    background: #4caf50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-verify:hover {
    background: #45a049;
}

.btn-reject {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-reject:hover {
    background: #da190b;
}

.btn-trigger {
    background: #ff9800;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-trigger:hover {
    background: #f57c00;
}

/* Payment Section Styles - Enhanced Light Theme for Visibility */
.payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4), 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b7a, #dc3545);
    z-index: 1;
}

.payment-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 122, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.payment-section h3 {
    color: #000000 !important;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.payment-section h3 i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.payment-section p {
    color: #000000 !important;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.qr-payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.qr-code-section {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.qr-code-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    border-radius: 12px;
    pointer-events: none;
}

.qr-code-section h4 {
    color: #000000 !important;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.qr-code-section h4 i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.qr-code-display {
    background: #000000 !important;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 3px solid #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.qr-code-display img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.loading-spinner {
    padding: 40px;
    text-align: center;
    color: #cccccc;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #dc3545;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.payment-details {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.payment-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.03) 0%, transparent 50%);
    border-radius: 10px;
    pointer-events: none;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
    color: #ffffff;
    font-size: 0.95rem;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item span {
    color: #000000 !important;
    font-weight: 500;
}

.detail-item strong {
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #dc3545, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.payment-instructions {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.payment-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    border-radius: 12px;
    pointer-events: none;
}

.payment-instructions h4 {
    color: #000000 !important;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.payment-instructions h4 i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.payment-instructions ol {
    color: #000000 !important;
    padding-left: 1.5rem;
    margin: 0;
}

.payment-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 0.5rem;
    position: relative;
    color: #000000 !important;
}

.payment-instructions li::marker {
    color: #dc3545;
    font-weight: bold;
}

.utr-input-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.utr-input-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    border-radius: 12px;
    pointer-events: none;
}

.utr-input-section h4 {
    color: #000000 !important;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.utr-input-section h4 i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.utr-input-section .form-group {
    margin-bottom: 1.5rem;
}

.utr-input-section .form-group label {
    color: #000000 !important;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

#utrInput {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    border: 2px solid #666;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

#utrInput:focus {
    border-color: #dc3545;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3);
    outline: none;
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a2a 100%);
}

#utrInput:valid {
    border-color: #28a745;
    background: linear-gradient(135deg, #1a2f1a 0%, #2a3f2a 100%);
}

#utrInput:invalid {
    border-color: #dc3545;
    background: linear-gradient(135deg, #2f1a1a 0%, #3f2a2a 100%);
}

#utrInput::placeholder {
    color: #888;
    letter-spacing: 1px;
    font-size: 16px;
}

#paymentScreenshotInput {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    border: 2px solid #666;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

#paymentScreenshotInput:focus {
    border-color: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
    outline: none;
}

#paymentScreenshotInput::-webkit-file-upload-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    font-weight: 500;
}

#paymentScreenshotInput::-webkit-file-upload-button:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
}

.help-text {
    color: #000000 !important;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    display: block;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #dc3545;
}

.help-text i {
    color: #dc3545;
    margin-right: 5px;
}

.payment-status {
    background: linear-gradient(135deg, #2a2f1a 0%, #3a3f2a 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.status-icon i {
    font-size: 2.5rem;
    color: #28a745;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-text h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.status-text p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 2px solid #dc3545;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Registration Closed Styles */
.registration-closed {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.closed-message {
    text-align: center;
    max-width: 600px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.closed-message i {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.closed-message h2 {
    color: #dc3545;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.closed-message p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.closed-message .btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Registration Closed Message */
.registration-closed-message {
    background: #1a1a1a;
    border: 2px solid #dc3545;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.registration-closed-message .closed-icon {
    margin-bottom: 1.5rem;
}

.registration-closed-message .closed-icon i {
    font-size: 4rem;
    color: #dc3545;
}

.registration-closed-message h2 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.registration-closed-message p {
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.registration-closed-message .contact-info {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Error Banner */
.error-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.error-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-content i {
    font-size: 1.2rem;
}

/* Loading States */
.fee-amount {
    transition: all 0.3s ease;
}

.fee-amount:contains("Loading") {
    color: #6c757d !important;
    font-style: italic;
}

/* Loading animation for amounts */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.fee-amount:contains("Loading"),
#registrationFee:contains("Loading"),
#totalAmount:contains("Loading"),
#formPaymentAmount:contains("Loading") {
    animation: pulse 1.5s infinite;
}

/* Dates List Styling */
.dates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dates-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.dates-list li:last-child {
    border-bottom: none;
}

.dates-list li i {
    margin-right: 1rem;
    color: #dc3545;
    width: 20px;
    text-align: center;
}

.dates-list li span {
    font-weight: 600;
    color: #dc3545;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .registration-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-info {
        position: static;
        order: 2;
    }
    
    .registration-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        max-width: 90%;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .payment-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 60px 15px;
    }
    
    .registration-form {
        padding: 1.5rem 1rem;
    }
    
    .registration-form h2 {
        font-size: 1.6rem;
    }
    
    .fee-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .modal-content {
        margin: 5% auto;
    }
    
    .success-content {
        padding: 2rem 1rem;
    }
}

/* Responsive UPI Modal */
@media (max-width: 768px) {
    .upi-modal-content {
        max-width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .payment-step {
        padding: 1.5rem;
    }
    
    .qr-code-container {
        padding: 1.5rem;
    }
    
    .qr-code-image {
        max-width: 200px;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .step-actions .btn {
        flex: none;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .payment-step {
        padding: 1rem;
    }
    
    .qr-code-container {
        padding: 1rem;
    }
    
    .qr-code-image {
        max-width: 180px;
    }
    
    .payment-details {
        margin: 1rem 0;
    }
    
    .detail-row {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Payment Section Responsive Design - Enhanced */
@media (max-width: 768px) {
    .qr-payment-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qr-code-display {
        padding: 15px;
    }
    
    .qr-code-display img {
        max-width: 150px;
    }
    
    .payment-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .payment-section h3 {
        font-size: 1.3rem;
    }
    
    .qr-code-section h4,
    .payment-instructions h4,
    .utr-input-section h4 {
        font-size: 1.1rem;
    }
    
    #utrInput {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 12px;
    }
    
    .payment-instructions ol {
        padding-left: 1.2rem;
    }
    
    .payment-instructions li {
        font-size: 0.95rem;
    }
    
    .fee-display {
        padding: 1.2rem;
    }
    
    .fee-total {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .payment-section h3 {
        font-size: 1.2rem;
    }
    
    #utrInput {
        font-size: 14px;
        padding: 10px;
        letter-spacing: 0.5px;
    }
    
    .payment-status {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
    }
    
    .status-icon {
        margin-bottom: 10px;
    }
    
    .status-icon i {
        font-size: 2rem;
    }
    
    .status-text h4 {
        font-size: 1.1rem;
    }
    
    .payment-details {
        padding: 1rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    .qr-code-section,
    .payment-instructions,
    .utr-input-section {
        padding: 1.2rem;
    }
    
    .help-text {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

/* Payment Section Button Enhancements */
.payment-section .btn-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.payment-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.payment-section .btn-primary:hover::before {
    left: 100%;
}

.payment-section .btn-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.payment-section .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.payment-section .btn-secondary {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #ffffff;
    border: 2px solid #555;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.payment-section .btn-secondary:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-color: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Disabled button state */
.payment-section .btn:disabled {
    background: #666 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    border-color: #666 !important;
    transform: none !important;
    box-shadow: none !important;
}

.payment-section .btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Payment Section Accessibility and Visual Enhancements */

/* Focus indicators for better accessibility */
.payment-section input:focus-visible,
.payment-section select:focus-visible,
.payment-section button:focus-visible {
    outline: 3px solid rgba(220, 53, 69, 0.5);
    outline-offset: 2px;
}

/* Loading states */
.payment-section .btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.payment-section .btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success/Error state indicators */
.form-group.success input {
    border-color: #28a745 !important;
    background: linear-gradient(135deg, #1a2f1a 0%, #2a3f2a 100%) !important;
}

.form-group.error input {
    border-color: #dc3545 !important;
    background: linear-gradient(135deg, #2f1a1a 0%, #3f2a2a 100%) !important;
}

.form-group.success::after {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-group.error::after {
    content: '✗';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-group {
    position: relative;
}

/* Error message styling */
.error-message {
    color: #ff6b7a;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #dc3545;
}

.success-message {
    color: #40e0d0;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #28a745;
}

/* Smooth transitions for all interactive elements */
.payment-section * {
    transition: all 0.3s ease;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .payment-section {
        border-width: 3px;
    }
    
    .payment-section input,
    .payment-section select {
        border-width: 3px;
    }
    
    .detail-item {
        border-bottom-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .payment-section *,
    .loading-spinner i,
    .btn::before {
        animation: none !important;
        transition: none !important;
    }
}

/* Dark mode specific enhancements */
@media (prefers-color-scheme: dark) {
    .payment-section {
        border-color: #ff6b7a;
    }
    
    .qr-code-display {
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    }
}

/* Advanced Dropdown Menu Enhancements */

/* Custom select dropdown styling for payment section */
.payment-section .form-group select {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #666;
    color: #ffffff;
    padding: 16px 40px 16px 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.payment-section .form-group select:focus {
    background: linear-gradient(135deg, #2a2a2a 0%, #352525 100%);
    border-color: #dc3545;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.payment-section .form-group select:hover {
    background: linear-gradient(135deg, #252525 0%, #303030 100%);
    border-color: #999;
}

/* Improved select options for payment section */
.payment-section .form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 16px;
    font-weight: 500;
    border: none;
    line-height: 1.5;
}

.payment-section .form-group select option:hover {
    background: #dc3545;
    color: #ffffff;
}

.payment-section .form-group select option:checked {
    background: #dc3545;
    color: #ffffff;
    font-weight: 600;
}

/* Custom dropdown arrow for payment section */
.payment-section .form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'><path d='M8 11L3 6h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.payment-section .form-group select:focus {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='0 0 16 16'><path d='M8 11L3 6h10z'/></svg>");
}

/* Select validation states */
.payment-section .form-group.success select {
    border-color: #28a745;
    background: linear-gradient(135deg, #1a2f1a 0%, #2a3f2a 100%);
}

.payment-section .form-group.error select {
    border-color: #dc3545;
    background: linear-gradient(135deg, #2f1a1a 0%, #3f2a2a 100%);
}

/* Multi-select support */
.payment-section .form-group select[multiple] {
    height: auto;
    min-height: 120px;
    padding: 8px;
}

.payment-section .form-group select[multiple] option {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 4px;
}

/* Select loading state */
.payment-section .form-group select.loading {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'><circle cx='8' cy='8' r='3' fill='none' stroke='%23ffffff' stroke-width='2'><animate attributeName='stroke-dasharray' values='0 18.84;4.71 14.13;9.42 9.42;14.13 4.71;18.84 0' dur='1s' repeatCount='indefinite'/></svg>");
    background-size: 16px;
    pointer-events: none;
    opacity: 0.7;
}

/* Responsive dropdown adjustments */
@media (max-width: 768px) {
    .payment-section .form-group select {
        padding: 14px 36px 14px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .payment-section .form-group select {
        background-size: 12px;
        background-position: right 10px center;
    }
}

@media (max-width: 480px) {
    .payment-section .form-group select {
        padding: 12px 32px 12px 12px;
        font-size: 16px;
    }
    
    .payment-section .form-group select option {
        padding: 10px 12px;
    }
}

/* Additional Payment Section Text Color Fixes */
.payment-section,
.payment-section * {
    color: #000000 !important;
}

/* Dark background elements should have black text for visibility */
.payment-section .qr-code-section,
.payment-section .payment-instructions,
.payment-section .utr-input-section,
.payment-section .payment-details,
.payment-section .fee-display {
    color: #000000 !important;
}

.payment-section .qr-code-section *,
.payment-section .payment-instructions *,
.payment-section .utr-input-section *,
.payment-section .payment-details *,
.payment-section .fee-display * {
    color: #000000 !important;
}

/* Specific overrides for elements that should keep their colors */
.payment-section .detail-item strong {
    background: linear-gradient(135deg, #dc3545, #ff6b7a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.payment-section h3 i,
.payment-section h4 i,
.payment-section .help-text i {
    color: #dc3545 !important;
}

.payment-section .payment-instructions li::marker {
    color: #dc3545 !important;
}

/* Ensure QR code display has white text on black background */
.payment-section .qr-code-display {
    background: #000000 !important;
    color: #ffffff !important;
}

.payment-section .qr-code-display * {
    color: #ffffff !important;
}

/* File input button styling */
.payment-section #paymentScreenshotInput::-webkit-file-upload-button {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white !important;
}

/* Loading spinner text - black on light background */
.payment-section .loading-spinner p {
    color: #000000 !important;
}

/* Payment status text - keep white on dark background */
.payment-section .status-text h4,
.payment-section .status-text p {
    color: #ffffff !important;
}
