﻿:root {
    --app-color: #01579B;
}
/* ===============================
       GIFTEDNESS DASHBOARD
    ================================ */
.giftedness-dashboard {
    padding: 20px 30px 40px;
    padding-top:155px;
    font-family: "Inter", sans-serif;
    background-color: #FFFFFF;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    /* HEADER */
    .dashboard-header h2 {
        font-size: 20px;
        font-weight: 600;
        color: #4F46E5;
        margin-bottom: 4px;
    }

    .sub-text {
        font-size: 16px;
        color: #093052;
    }

    .dashboard-header .highlight {
        color: #2563eb;
    }

    .margin-top-high {
        margin-top:26px;
    }

.notification-wrapper {
    /*position: relative;*/
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 13px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bell-icon {
    width: 35px;
    height: 35px;
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 9px;
    width: 8px;
    height: 8px;
    background: #E53935;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.notification-wrapper:hover {
    transform: scale(1.05);
    transition: 0.2s ease;
}

.notification-container {
    position: relative;
    z-index: 9999;
}

/* Dropdown */
.notification-dropdown {
    position: absolute;
    right: 0;
    top: 50px;
    width: 340px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 9999;
}

.dropdown-header {
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* Items */
.notification-item {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f2f2f2;
    align-items: flex-start;
}

    .notification-item:last-child {
        border-bottom: none;
    }

    .notification-item .icon {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

.icon.danger {
    background: #FFE5E5;
    color: #E53935;
}

.icon.success {
    background: #E6F4EA;
    color: #2E7D32;
}

.icon.info {
    background: #E3F2FD;
    color: #1976D2;
}

.icon.warning {
    background: #FFF3E0;
    color: #EF6C00;
}

.notification-item .content {
    flex: 1;
}

.notification-item strong {
    font-size: 13px;
}

.notification-item p {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0;
}

.notification-item .time {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}

.section-separator {
    height: 1px;
    color: #b1a8a8;
    margin: 12px 0 16px;
}

/* FILTER BAR */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.filter-select {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 13px;
    min-width: 180px;
}

.date-picker {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
}

/* TABS */
.tabs-container {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
    margin-top: 20px;
}


.selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content:center;
    margin: 12px;
}

.tag {
    border: 1px solid #FF7AA5;
    color: #434343;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    gap: 6px;
    align-items: center;
}

    .tag span {
        cursor: pointer;
        font-weight: bold;
    }

.dropdown-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

    .dropdown-btn:disabled, .btn-save:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.tab {
    padding: 10px 14px;
    font-size: 14px;
    border: none;
    position:inherit;
    background: transparent;
    cursor: pointer;
    color: #093052;
}

    .tab.active {
        background: #004480;
        color: #fff;
        border-radius: 6px;
    }

.download-btn {
    margin-left: auto;
    padding: 8px 14px;
    position:inherit;
    gap:12px;
    background-color: #5B5BD5;
    font-size: 13px;
    border-radius: 6px;
}

.app-color {
    color: #093052;
}

/* DESCRIPTION */
.section-header {
    font-size: 18px;
    font-weight: 600;
    color: #093052;
    margin-bottom: 6px;
}

.sub-header {
    font-size: 16px;
    font-weight: 600;
    color: #093052;
    margin-bottom: 6px;
}

.section-sub-description {
    font-size: 16px;
    color: #093052;
    margin-bottom: 6px;
}

/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-header-text {
    color: var(--app-color);
    font-weight: 600;
    font-size: 18px;
}

.card-sub-header-text {
    font-weight: 600;
    font-size: 16px;
}

.progress-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
    text-align: center;
    column-gap: 5px;
}

    /* Row 1 – full width */
    .progress-text label:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* Row 2 – two items side by side */
    .progress-text label:nth-child(2) {
        grid-column: 1;
    }

    .progress-text label:nth-child(3) {
        grid-column: 2;
    }

    /* Row 3 – full width */
    .progress-text label:nth-child(4) {
        grid-column: 1 / -1;
    }


.card-desc-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.legend-box {
    width: 12px;
    height: 12px;
    background-color: #5B5FEF; /* blue box */
    border-radius: 3px;
}

.dropdown {
    border: none;
    background: #f2f4f8;
    padding: 6px 10px;
    border-radius: 6px;
}

.text-color {
    color: #093052;
}


.progress-section {
    display: grid;
    align-items: center;
    gap: 5px;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Gauge */
.gauge {
    width: 200px;
    height: 80px;
    border-radius: 120px 120px 0 0;
    background: linear-gradient(to right, #e0e0e0, #5a5af5);
    position: relative;
    margin: 12px auto 0 auto;
}

.needle {
    width: 2px;
    height: 50px;
    background: #5a5af5;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: rotate(35deg);
    transform-origin: bottom;
}

.center-dot {
    width: 10px;
    height: 10px;
    background: #5a5af5;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 5px);
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    background: #f8f9fb;
}

    .task-item.alert-background {
        background: #fff4f4;
    }

.icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

    .icon.blue {
        background: #e3ecff;
        color: #3b5bfd;
    }

    .icon.orange {
        background: #ffe9dc;
        color: #ff7a00;
    }

    .icon.red {
        background: #ffe1e1;
        color: #ff0000;
    }

    .icon.green {
        background: #e0f7e9;
        color: #00a65a;
    }

.time {
    margin-left: auto;
    font-size: 12px;
    color: #777;
}

.green-act {
    color: #00a65a;
}

.blue-act {
    color: #3b5bfd;
}

.red-act {
    color: #ff0000;
}


/* CARDS */
.gifted-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

    .gifted-card h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #093052;
    }

.muted {
    font-size: 14px;
    color: #94a3b8;
}

/* CHART PLACEHOLDER */
.chart-placeholder {
    margin-top: 14px;
    height: 220px;
    background: linear-gradient(to top, #dbeafe, #f8fafc);
    border-radius: 8px;
    position: relative;
}

.bell-curve {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 140px;
    background: radial-gradient(circle at center, #2563eb 0%, #60a5fa 60%, transparent 70%);
    border-radius: 50% 50% 0 0;
}

/* TABLES */
.info-table,
.baseline-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

    .info-table th,
    .info-table td,
    .baseline-table th,
    .baseline-table td {
        padding: 10px;
        font-size: 15px;
        border-bottom: 1px solid #e5e7eb;
        color: #093052;
    }

    .info-table th,
    .baseline-table th {
        background-color: #A6A6FF;
        font-weight: 600;
    }

    .info-table tbody tr:nth-child(even),
    .baseline-table tbody tr:nth-child(even) {
        background: #D9D9FF;
    }

    .info-table tbody tr:nth-child(odd),
    .baseline-table tbody tr:nth-child(odd) {
        background: #FFFFFF;
    }

.full-width {
    margin-top: 22px;
}

.bullet-list{
    display:grid;
    gap:10px;
}

.bullet-list li {
    font-size: 15px;
    color: #093052;
}
.date-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    width: fit-content;
}

.icon-style {
    width: 16px;
    height: 16px;
}

.logo-head {
    width: 90px;
    height: 43px;
    margin-bottom: 12px;
}

.menu-logo {
    width: 110px;
    height: 55px;
}

.logo-head {
    max-width: 90vw;
}

.page-title-logo {
    width: 75px;
    height: 75px;
}

.date-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.date-popup-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .date-popup-card label {
        font-size: 12px;
        color: #666;
        display: block;
        margin-top: 10px;
    }

    .date-popup-card input {
        width: 100%;
        padding: 6px;
        margin-top: 4px;
    }

.popup-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.cancel-btn {
    background: none;
    border: none;
    color: #666;
}

.apply-btn {
    background: #0D6EFD;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
}

.style-image{
    margin-top:20px;
    margin-bottom:20px;
    width:261px;
    height:165px;
}

.page-wrapper {
    margin: auto;
    font-family: system-ui, sans-serif;
}

.intro h2 {
    margin-bottom: 10px;
}

.intro ul {
    padding-left: 20px;
}

.note {
    margin-top: 8px;
    color: #093052;
    font-size: 15px;
}

.intellectual-container {
    display: grid;
    padding:60px 20px 20px 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.style-card{
    display:grid;
    justify-content:center;
    text-align:center;
}

.subtext {
    margin-bottom: 12px;
}

.grade-level {
    margin: 16px 0;
    font-weight: 500;
}

.grade-badge {
    border: 1px solid #f5c542;
    border-radius: 6px;
    padding: 2px 8px;
    margin-left: 6px;
}

.table-wrapper {
    margin-top: 16px;
    overflow-x: auto;
}

.bold {
    font-weight: 600;
}

.quote {
    margin-top: 16px;
    color: #555;
}

.abilities {
    margin-left: 20px;
    color: #ff7a00;
    font-weight: 500;
}

    .abilities li {
        font-size: 16px;
    }

.action-plan {
    margin-top: 20px;
}

.action-item {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.action-icon {
    width: 10px;
    height: 10px;
    background: #f04e30;
    border-radius: 50%;
    margin-top: 6px;
}

.parameter-row {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 20px;
    margin-top: 20px;
}

.gauge-grid {
    display: flex;
    gap: 20px;
    flex-wrap:wrap;
    justify-items: center;
}

    .gauge-grid.three {
        grid-template-columns: repeat(3, 1fr);
    }

.link-title {
    font-weight: 600;
    color: #5b5bf7;
    margin-bottom: 6px;
    display: block;
}

.summary-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
}

.highlight-box {
    background: #b1b0ff;
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 4px;
}

.highlight-title {
    font-weight: 600;
    color: #1f1f5c;
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    color: #fff;
}

.step-number {
    font-size: 22px;
    font-weight: 700;
}

.step-1 {
    background: #b23a48;
}

.step-2 {
    background: #f18f01;
}

.step-3 {
    background: #2ec4b6;
}

.step-4 {
    background: #1b6ca8;
}

.timeline-card {
    margin-top: 24px;
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
}

    .timeline-table th {
        background: #b1b0ff;
        text-align: left;
        padding: 12px;
    }

    .timeline-table td {
        padding: 14px;
    }

.page-title {
    color: #115997;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.page-subtitle {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 30px;
}

.breadcrumb-wrapper {
    width: 100%;
    display: flex;
    padding: 20px;
    /* border-bottom: 1px solid #eee; */
    justify-content: flex-start; /* forces left alignment */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

    .breadcrumb a {
        text-decoration: none;
        color: #115997;
    }

.info-card {
    max-width: 900px;
    min-height:270px;
    margin: auto;
    background: #ffffff;
    padding: 35px 45px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.policy-link {
    color: #115997;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 4px;
}

    .policy-link:hover {
        color: #0b3d73;
        text-decoration: none;
    }

.card-heading {
    text-align: center;
    color: #115997;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

    .card-heading.second {
        margin-top: 25px;
    }

.info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

    .info-list li {
        margin-bottom: 12px;
        padding-left: 28px;
        position: relative;
        font-size: 14px;
        color: #333;
    }

        .info-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #115997;
            font-size: 14px;
            top: 0;
        }

.highlight {
    color: #ff3b5c;
    font-weight: 500;
}

.card-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

.crumb {
    cursor: pointer;
    color: #115997;
}

    .crumb:hover {
        text-decoration: underline;
    }


/* RESPONSIVE */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-wrap: wrap;
    }

    .btn-outline {
        margin-left: 0;
    }
}

