/* Domain Scoring Prototype Styles */
.domain-scoring-container {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.scoring-title {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.score-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin: 6px 0;
}

.score-label {
    color: var(--text-muted);
}

.score-value {
    color: var(--text-main);
    font-weight: 600;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-container.large {
    height: 12px;
    border-radius: 6px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.total-score-container {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.total-score-container .score-label,
.total-score-container .score-value {
    font-size: 1.1rem;
    color: var(--text-main);
}