.schd-plan {
    margin-top: 14px;
}

.schd-plan-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.schd-assumptions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.schd-plan-summary div,
.schd-assumptions div {
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    background: rgba(255,255,255,0.035);
}

.schd-plan-summary span,
.schd-assumptions span {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 6px;
}

.schd-plan-summary strong,
.schd-assumptions strong {
    font-size: 15px;
}

.schd-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    margin-bottom: 12px;
}

.schd-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: rgba(255,255,255,0.025);
}

.schd-table th,
.schd-table td {
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: right;
    font-size: 12px;
}

.schd-table th {
    color: var(--text-secondary);
    font-weight: 800;
}

.schd-table td:first-child,
.schd-table th:first-child {
    text-align: left;
}

.schd-table small {
    color: var(--text-muted);
}

.schd-note {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .schd-plan-summary {
        grid-template-columns: 1fr;
    }

    .schd-assumptions {
        grid-template-columns: 1fr 1fr;
    }

    .schd-table th,
    .schd-table td {
        padding: 10px 9px;
    }
}

/* Highlighter and achievement rate styling */
.highlight-target {
    background: rgba(234, 179, 8, 0.15); /* Subtle Yellow highlighter */
    color: #facc15;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.highlight-actual {
    background: rgba(139, 92, 246, 0.15); /* Subtle Purple highlighter */
    color: #c084fc;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.ach-over {
    color: #ef4444 !important; /* Premium Red for achieved/exceeded */
}

.ach-under {
    color: #3b82f6 !important; /* Premium Blue for insufficient */
}
