.admin-page {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.admin-tabs-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.abo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: none;
}

.abo-tab {
    position: relative;
    border: none;
    background: transparent;
    padding: 0.4rem 0.85rem;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.7);
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: background 0.12s ease, color 0.12s ease;
}

.abo-tab:focus,
.abo-tab:focus-visible {
    outline: none;
    box-shadow: none;
}

.abo-tab:hover {
    background: rgba(15, 118, 106, 0.06);
}

.abo-tab.is-active {
    background: #ffffff;
    color: #0f766a;
    box-shadow: 0 8px 20px rgba(15, 118, 106, 0.18), 0 0 0 1px rgba(15, 118, 106, 0.22);
    transform: translateY(-1px);
    border-bottom: none;
}

.abo-tab-content {
    padding-top: 0.25rem;
}
