@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;600;700&family=Barlow:wght@400;600;800&display=swap');

body {
    font-family: 'Barlow', sans-serif;
    background-color: #fefce8;
    color: #0f172a;
    background-image: linear-gradient(#f1f5f9 1px, transparent 1px), linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
    background-size: 20px 20px
}

.font-data {
    font-family: 'Teko', sans-serif
}

.dashboard-card {
    background: white;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 8px
}

.survey-chart {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 20px 10px;
    background: #f8fafc;
    border-bottom: 2px solid #94a3b8;
    position: relative
}

.bar {
    width: 40px;
    background: #3b82f6;
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    justify-content: center
}

.bar-label {
    position: absolute;
    bottom: -30px;
    font-weight: bold;
    text-align: center;
    width: 80px;
    font-size: 0.9rem
}

.bar-value {
    position: absolute;
    top: -25px;
    font-weight: bold;
    color: #1e293b
}

.pie-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#3b82f6 0% 20%, #e2e8f0 20% 100%);
    margin: 0 auto;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1)
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

.clipboard {
    position: relative;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-top: 8px solid #3b82f6;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1)
}

.clipboard::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background: #94a3b8;
    border-radius: 4px
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    max-width: 300px;
    margin: 0 auto
}

.person-icon {
    font-size: 1.2rem;
    color: #cbd5e1;
    transition: all 0.3s ease
}

.person-icon.active {
    color: #3b82f6;
    transform: scale(1.2)
}

/* High-quality claymation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('clay_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}