.topbar {
    min-height: 92px;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}

.title h1 {
    font-size: 25px;
    margin-bottom: 6px;
}

.title p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.period,
.refresh {
    border-radius: 13px;
    padding: 11px 15px;
    font-size: 14px;
}

.period {
    border: 1px solid #cbd5e1;
    background: white;
}

.refresh {
    border: none;
    background: var(--red);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.user {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #374151;
}

@media (max-width: 760px) {
    .topbar {
        height: auto;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 14px;
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.red-pill {
    background: var(--red);
    border-color: var(--red);
    color: white;
}