.admin-panel {
    padding: 20px;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.stat-card {
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}
.user-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}
.user-table th {
    text-align: left;
    padding: 12px;
    background: #f5f5f5;
}
.user-table td {
    padding: 12px;
    border-top: 1px solid var(--border-color);
}
