/*
 * Parivartan Sutra — Student (Child) Portal theme.
 * Extends the Parent portal's "Sprout" design system (same color vars,
 * fonts, buttons, cards, option-cards, timer pill, score ring) rather than
 * redefining it, so both portals read as one family. This file only adds
 * the pieces that are genuinely different for a teen audience: tighter,
 * more "app dashboard" tile components instead of the Parent portal's
 * multi-child Growth Path stepper.
 */
@import url("/assets/css/parent-theme.css");

:root {
    /* Slightly tighter corners than the Parent portal — a cleaner,
       less "soft plant card" and more "app tile" feel. */
    --ps-radius-lg: 18px;
}

/* ---------- Dashboard tiles ---------- */

.ps-tile {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ps-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}
.ps-tile-icon-sprout { background: var(--ps-sprout); }
.ps-tile-icon-kite { background: var(--ps-kite); }

.ps-tile-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.35rem; }
.ps-tile-text { color: var(--ps-ink-soft); margin-bottom: 1rem; flex-grow: 1; }

.ps-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--ps-kite-light);
    color: #2f5f9e;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
    width: fit-content;
}
