@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.chart-container {
    position: relative;
    height: 400px;
    margin: 20px 0;
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}
.score-excellent { background: #10b981; }
.score-good      { background: #3b82f6; }
.score-average   { background: #f59e0b; }
.score-poor      { background: #ef4444; }

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}

th, td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f9fafb;
    font-weight: 600;
}

.highlight-row {
    background-color: #fef3c7;
    font-weight: 600;
}

@media print {
    body { margin: 0; }
    .no-print { display: none; }
}






.sec-pad {
    padding: 7.5rem 0 4rem 0 !important;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}