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

.growth-plan-title {
    margin-bottom: 10px;
}

.growth-plan-title strong {
    display: block;
    font-size: 15px;
}

.growth-plan-title span {
    color: var(--text-muted);
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

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

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

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

.plan-assumptions strong {
    font-size: 14px;
}

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

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

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

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

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

.growth-table small,
.growth-note {
    color: var(--text-muted);
}

.growth-note {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 10px;
}

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

/* 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 */
}
