/* Modern AI Domain Discovery Page Styles - Matching pricing, billing, dashboard design */

/* Score Breakdown Modal Styling */
.score-breakdown-popup {
    border-radius: 16px !important;
    overflow: hidden;
}

.score-breakdown-title {
    font-weight: 700 !important;
    color: #2c3e50 !important;
    padding: 1.5rem 1.5rem 1rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0 !important;
}

.score-breakdown-container {
    padding: 1.5rem !important;
}

.score-breakdown-modal .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.score-breakdown-modal .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.score-breakdown-modal .alert {
    border-radius: 8px;
    border: none;
}

/* Dark mode support for score breakdown */
[data-bs-theme="dark"] .score-breakdown-title,
[data-bs-theme="brand"] .score-breakdown-title {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .score-breakdown-modal .alert-info,
[data-bs-theme="brand"] .score-breakdown-modal .alert-info {
    background-color: rgba(13, 202, 240, 0.1) !important;
    border-color: rgba(13, 202, 240, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero Section */
.ai-discovery-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.ai-discovery-hero-section h1 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ai-discovery-hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Card Headers - Modern Gradient Style */
.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.card-header h4,
.card-header h5,
.card-header h6,
.card-header .card-title {
    color: white;
    font-weight: 700;
    margin: 0;
}

.card-header i {
    color: white !important;
}

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

.card-header .btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Support */
[data-bs-theme="dark"] .card-header,
[data-bs-theme="brand"] .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

