/* Professional Email Verification Status Styles - BoAnalyst Dark Theme */

.verification-status-card {
    background: linear-gradient(135deg, #0a0a0a 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
}

.verification-status-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
}

.verification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-bottom: 1px solid #D4AF37;
}

.verification-info {
    flex: 1;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.verification-badge i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.badge-success {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000000;
    box-shadow: 0 0.125rem 0.25rem rgba(212, 175, 55, 0.3);
    font-weight: bold;
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #000000;
    box-shadow: 0 0.125rem 0.25rem rgba(255, 193, 7, 0.3);
    font-weight: bold;
}

.badge-danger {
    background: linear-gradient(135deg, #e74a3b 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(231, 74, 59, 0.3);
}

.badge-info {
    background: linear-gradient(135deg, #36b9cc 0%, #258391 100%);
    color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(54, 185, 204, 0.3);
}

.verification-email {
    margin-top: 0.25rem;
}

.verification-email i {
    margin-right: 0.25rem;
    color: #6c757d;
}

.verification-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: 1rem;
}

.verification-icon.verified {
    background: linear-gradient(135deg, #1cc88a 0%, #17a673 100%);
    color: white;
    box-shadow: 0 0.25rem 0.5rem rgba(28, 200, 138, 0.3);
}

.verification-icon.pending {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
    color: white;
    box-shadow: 0 0.25rem 0.5rem rgba(246, 194, 62, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.verification-content {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
}

.verification-message {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
}

.verified-content .verification-message {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
}

.pending-content .verification-message {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.verification-message i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.verification-benefits {
    padding: 0.75rem;
    background: rgba(28, 200, 138, 0.05);
    border-radius: 0.25rem;
    border-left: 4px solid #1cc88a;
}

.verification-benefits i {
    color: #1cc88a;
    margin-right: 0.25rem;
}

.verification-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.verification-actions .btn {
    border-radius: 0.35rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.verification-actions .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000000;
    font-weight: bold;
    border: none;
}

.verification-actions .btn-primary:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #D4AF37 100%);
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(212, 175, 55, 0.4);
    color: #000000;
}

.verification-actions .btn-outline-secondary {
    background: transparent;
    border: 1px solid #333333;
    color: #cccccc;
}

.verification-actions .btn-outline-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-1px);
}

.verification-help {
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    color: #cccccc;
}

.verification-help a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.verification-help a:hover {
    color: #F7DC6F;
    text-decoration: underline;
}

.verification-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 0.5rem;
}

.verification-help-content h6 {
    color: #5a5c69;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.verification-help-content h6:first-child {
    margin-top: 0;
}

.verification-help-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.verification-help-content li {
    margin-bottom: 0.25rem;
    color: #6c757d;
}

.verification-help-content i {
    color: #4e73df;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verification-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verification-icon {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .verification-actions {
        flex-direction: column;
    }
    
    .verification-actions .btn {
        width: 100%;
    }
    
    .verification-notification {
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .verification-status-card {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .verification-header {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        border-bottom-color: #4a5568;
    }
    
    .verification-actions .btn-outline-secondary {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .verification-actions .btn-outline-secondary:hover {
        background: #4a5568;
    }
    
    .verification-help {
        background: rgba(74, 85, 104, 0.2);
    }
}

/* Animation for status changes */
.verification-status-card.status-changed {
    animation: statusChange 0.6s ease-in-out;
}

@keyframes statusChange {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
