/**
 * Government ID Verification Styles
 * Professional greyscale design
 * @version 1.0.0
 */

.ennu-id-verification-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ennu-id-verification-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
}

.ennu-id-verification-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.ennu-id-verification-header p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Status Display */
.ennu-id-verification-status {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 2px solid;
}

.ennu-id-verification-status.verified {
    background: #f3f4f6;
    border-color: #374151;
}

.ennu-id-verification-status.pending {
    background: #f9fafb;
    border-color: #6b7280;
}

.ennu-id-verification-status .status-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.ennu-id-verification-status .status-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.ennu-id-verification-status .status-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Upload Grid */
.ennu-id-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.ennu-id-upload-box {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.upload-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.upload-box-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Upload Dropzone */
.upload-dropzone {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    transition: all 0.3s ease;
}

.upload-dropzone.drag-over {
    background: #f3f4f6;
    border-color: #374151;
}

.upload-label {
    cursor: pointer;
    display: block;
    width: 100%;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.upload-text {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 8px 0;
}

.upload-hint {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Progress Bar */
.upload-progress {
    padding: 40px 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: #374151;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    text-align: center;
}

/* ID Preview */
.id-preview {
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.id-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Requirements Section */
.ennu-id-requirements {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
}

.ennu-id-requirements h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.ennu-id-requirements ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.ennu-id-requirements li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.ennu-id-requirements li:last-child {
    margin-bottom: 0;
}

/* Privacy Notice */
.ennu-id-privacy {
    text-align: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

/* Notice Box */
.ennu-id-verification-notice {
    padding: 20px;
    background: #f3f4f6;
    border-radius: 8px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ennu-id-verification-container {
        padding: 20px;
    }

    .ennu-id-upload-grid {
        grid-template-columns: 1fr;
    }

    .ennu-id-verification-header h2 {
        font-size: 24px;
    }

    .upload-dropzone {
        padding: 30px 15px;
        min-height: 250px;
    }
}

/* Animation for notifications */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
