/* PAGE */

.dashboard-container {
    max-width: 1300px;
    margin: auto;
    padding: 30px;
    background: #f6f8fb;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


/* HEADER */

.dashboard-header h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
}



/* KPI GRID */

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}


.kpi-card {
    background: var(--clr-white);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}


.kpi-label {
    font-size: 13px;
    font-weight: 800;
}


.kpi-value {
    font-size: 30px;
    font-weight: 600;
    margin-top: 6px;
}



/* PIPELINE */

.pipeline-section {
    background: var(--clr-white);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px;
    margin-bottom: 10px;
}

.pipeline-section h2 {
    font-size: 18px;
    margin-bottom: 5px;
}


.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.pipeline-card {
    padding: 15px;
}


.pipeline-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
}


.progress-bar {
    width: 100%;
    height: 15px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}


.progress {
    height: 100%;
}


.pipeline-percent {
    font-size: 12px;
    color: #6b7280;
}



/* COLORS */

.green-progress {
    background: var(--clr-8);
}

.yellow-progress {
    background: var(--clr-gold);
}

.red-progress {
    background: var(--clr-red);
}



/* CHART GRID */

.chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}


.chart-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chart-card h3 {
    margin-bottom: 15px;
}



.chart-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background: #f9fafb;
    border-radius: 6px;
}



/* ANALYTICS */
.analytics-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 20px;
}

