/* Legal-Specific Styles for Copyright Portal */

/* Legal Disclaimers */
.legal-disclaimers {
    margin: 3rem 0;
}

.disclaimer-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-left: 6px solid #e74c3c;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.disclaimer-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.disclaimer-section strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Penalty Warnings */
.penalty-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
    border: 2px solid #d68910;
}

.penalty-warning h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.penalty-warning p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Legal Form Sections */
.legal-confirmations {
    background: #fff5f5;
    border: 3px solid #e74c3c;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.legal-confirmations h3 {
    color: #c0392b;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: white;
    border: 2px solid #fadbd8;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.legal-checkbox:hover {
    border-color: #e74c3c;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.1);
}

.legal-checkbox input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 4px;
    transform: scale(1.3);
    accent-color: #e74c3c;
}

.legal-checkbox label {
    flex: 1;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    line-height: 1.5;
}

/* Digital Signature Section */
.digital-signature {
    background: #f7f9fc;
    border: 3px solid #3498db;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.digital-signature h3 {
    color: #2980b9;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.signature-field {
    background: white;
    border: 2px solid #3498db;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 1rem;
}

.signature-field label {
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 0.5rem;
    display: block;
}

.signature-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    background: #fafafa;
}

.signature-input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
}

/* Proof Upload Sections */
.proof-upload-section {
    background: #f8f9fa;
    border: 2px solid #6c757d;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.proof-upload-section h4 {
    color: #495057;
    margin-bottom: 1rem;
    font-weight: 600;
}

.upload-requirements {
    background: #e9ecef;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid #6c757d;
}

.upload-requirements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.upload-requirements li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* CAPTCHA Section */
.captcha-section {
    background: #e8f4fd;
    border: 2px solid #3498db;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.captcha-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 1rem;
}

.captcha-input {
    padding: 10px 15px;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-size: 1.1rem;
    width: 150px;
    text-align: center;
}


/* Educational Pop-up Styles */
.educational-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

/* Popup Content */
.popup-content {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    overflow-y: auto;
    max-height: 90vh;
    text-align: left;
    position: relative;
    z-index: 10000;
    left: 34%;
top: 25vh;
    /* Removed left/top to allow flexbox centering */
}

/* Heading */
.popup-content h3 {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #bdc3c7;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #e74c3c;
}


/* Button Style (optional override if needed) */
.btn.btn-primary {
    margin-top: 1.5rem;
    background-color: #e74c3c;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #c0392b;
}

/* Status Indicators */
.status-indicator {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-review {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #99d3ff;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-flagged {
    background: #f0b90b;
    color: #1a1a1a;
    border: 1px solid #d39e00;
}

/* Dashboard Styles */
.dashboard-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dashboard-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.claim-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.summary-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    border-left: 4px solid #3498db;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Form Validation Styles */
.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-control.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active {
    color: #3498db;
    font-weight: 600;
}

.progress-step.active::after {
    background: #3498db;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    line-height: 30px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background: #3498db;
    color: white;
}

small {
    font-size: smaller;
    color: #000000;
}
