/* GENERAL */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f5f7fb;
}

/* TOP BAR */
.topbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

.menu a {
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    color: #333;
}

.avatar {
    background: #06b6d4;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-weight: bold;
}

/* MAIN CONTAINER */
.container {
    padding: 40px;
}

/* KPI CARDS */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.kpi-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.kpi-card h3 {
    margin: 0;
    color: #888;
}

.kpi-card h2 {
    margin: 5px 0;
}

.green { color: #22c55e; }
.red { color: #ef4444; }

/* PROGRESS BAR */
.progress {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-top: 10px;
}

.progress div {
    height: 100%;
    background: #10b981;
    border-radius: 10px;
}

/* SOCIAL CARDS */
.social-row {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.social-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: bold;
}

.fb { color: #3b82f6; }
.tw { color: #0ea5e9; }
.g { color: #ef4444; }

/* MINI BARS */
.mini-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-top: 10px;
}

.mini-bar div {
    height: 100%;
    background: #06b6d4;
    border-radius: 4px;
}

/* GRID 2 SECTION */
.grid-2 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* RATING CARD */
.rating-card, .users-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.stars {
    margin-top: 10px;
}

.bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
}

.bar div {
    height: 100%;
    background: #10b981;
    border-radius: 4px;
}

/* USERS CARD */
.user-row {
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 15px;
}

.user-icon {
    background: #6366f1;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.green-dot, .red-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.green-dot {
    background: #10b981;
}

.red-dot {
    background: #ef4444;
}
