/* ===========================================================
   Assessment Score Specific Styles
   (Common styles moved to assessment-shared.css)
   =========================================================== */

/* ===========================================================
   FIXED TOP HEADER - TITLE, BUTTONS, AND DROPDOWNS
   Extends .page-fixed-header from assessment-shared.css
   =========================================================== */
.assessment-score-fixed-header {
    padding: 12px 0px;
    flex-shrink: 0;
}

/* ===========================================================
   MAIN CONTAINER WITH FIXED HEADER SPACING
   Extends .page-container from assessment-shared.css
   =========================================================== */
.assessment-score-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  
}

/* ===========================================================
   DOMAIN LEVEL - SCORE SPECIFIC
   =========================================================== */
.domain-title {
    justify-content: space-between;
}

.domain-title .domain-name {
    color: #667eea;
    font-size: 15px;
    font-weight: 700;
    flex: 1;
}

.domain-title .domain-score {
    color: #667eea;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Courier New', Consolas, monospace;
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 6px;
    background-color: rgba(102, 126, 234, 0.1);
}

/* Domain Rating Input - Hierarchical Input Style */
.domain-title .item-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-title .domain-rating-input {
    margin-right: 140px;
}

/* ===========================================================
   PROCESS LEVEL - SCORE SPECIFIC
   =========================================================== */
.process-title {
    justify-content: space-between;
}

.process-title .process-name {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.process-title .process-score {
    color: #10b981;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Courier New', Consolas, monospace;
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 6px;
    background-color: rgba(16, 185, 129, 0.1);
}

/* Process Rating Input - Hierarchical Input Style */
.process-title .item-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-title .process-rating-input {
    margin-right: 70px;
}

/* ===========================================================
   PRACTICE LEVEL - SCORE SPECIFIC
   =========================================================== */
.practice-title {
    justify-content: space-between;
}

.practice-title .practice-name {
    color: #f59e0b;
    font-size: 12px;
    font-weight: 500;
    flex: 1;
}

.practice-title .practice-score {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Courier New', Consolas, monospace;
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: rgba(245, 158, 11, 0.1);
}

/* Practice Rating Input - Hierarchical Input Style */
.practice-title .item-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-title .practice-rating-input {
    margin-right: 0;
}

/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */
@media (max-width: 992px) {
    .domain-title .domain-rating-input {
        margin-right: 100px;
    }

    .process-title .process-rating-input {
        margin-right: 50px;
    }

    .practice-title .practice-rating-input {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .domain-title .domain-score,
    .process-title .process-score,
    .practice-title .practice-score {
        font-size: 13px;
    }

    .domain-title .domain-rating-input,
    .process-title .process-rating-input,
    .practice-title .practice-rating-input {
        margin-right: 0;
    }
}




.assessment-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
}

.filter-group {
    min-width: 220px;
    flex: 0 0 auto;
}

    .filter-group .rz-form-field {
        width: 100%;
    }







