.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

.login-logo {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.stat-top { display: flex; justify-content: space-between; align-items: flex-start; }

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.filter-bar .form-group { margin-bottom: 0; flex: 1; min-width: 140px; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .dashboard-grid { grid-template-columns: 1fr; }
}

.top-list { list-style: none; }
.top-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}
.top-list li:last-child { border-bottom: none; }

.slide-panel.stats-panel { max-width: 560px; }
.stats-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.stats-meta .mono { color: var(--text); }
.stats-range { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.stats-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.stat-mini { background: var(--surface-2); border-radius: var(--radius); padding: 0.75rem 1rem; }
.stat-mini .label { font-size: 0.75rem; color: var(--text-muted); }
.stat-mini .value { font-size: 1.25rem; font-weight: 700; }
.chart-wrap-xs { height: 160px; position: relative; }

.hits-link {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}
.hits-link:hover { text-decoration: underline; }
