/* ==========================================================================
   DASHBOARD DIMENSIONS COMPONENT STYLES
   ========================================================================== */

.dimensions-card {
    background: #FFFFFF;
    border: 1px solid #E4E4E1;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    margin-bottom: 30px;
}

.dimensions-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
}

.section-intro-text {
    font-size: 0.92rem;
    color: #787875;
    margin-bottom: 25px;
}

/* Row & Stack Structure */
.dimensions-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dimension-row-item {
    display: flex;
    flex-direction: column;
}

.dim-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dim-title {
    font-weight: 600;
    font-size: 0.98rem;
    color: #1A1A1A;
}

/* Status Badges */
.dim-status-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.dim-status-tag.status-good {
    background-color: #E8F0E8;
    color: #2E502F;
}

.dim-status-tag.status-warn {
    background-color: #FEF3EB;
    color: #B25E24;
}

.dim-status-tag.status-alert {
    background-color: #FDF2F2;
    color: #9C3A3A;
}

/* Progress Track and Fills */
.dim-progress-track {
    background-color: #EBEBE6;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.dim-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease-in-out;
}

.dim-progress-fill.status-good {
    background-color: #557153;
}

.dim-progress-fill.status-warn {
    background-color: #D38345;
}

.dim-progress-fill.status-alert {
    background-color: #C04D4D;
}

/* Score Footers */
.dim-score-footer {
    font-size: 0.85rem;
    color: #5F605A;
    text-align: right;
}

.dim-score-footer strong {
    color: #1A1A1A;
    font-weight: 700;
}