/* Results page specific styling */
.results-dimension-card {
    background: var(--background-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.results-dimension-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.results-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #1a2332;
    padding: 3rem 2rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.score-display {
    font-size: 4rem;
    font-weight: 700;
    color: #1a2332;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.maturity-level {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dimension-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Ensure consistent spacing between cards */
.row > [class*="col-"] {
    margin-bottom: 1.5rem;
}

/* Chart container styling */
.chart-container {
    background: var(--background-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2rem;
}

/* Progress bar styling */
.progress {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.progress-bar {
    background-color: var(--primary-color) !important;
    border-radius: 6px;
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1a2332;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary svg {
    color: #1a2332;
    fill: #1a2332;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

/* Text visibility */
.card-body h5,
.card-body .dimension-score,
.card-body .text-muted {
    color: #ffffff !important;
}

/* Industry selector styling */
.form-select {
    background-color: var(--background-card);
    border: 1px solid var(--border-dark);
    color: #ffffff;
    border-radius: 8px;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    background-color: var(--background-card);
    color: #ffffff;
}

.form-select option {
    background-color: var(--background-card);
    color: #ffffff;
}

/* Consistent card heights */
.h-100 {
    height: 100% !important;
}

/* Section title styling */
.section-title {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}