
.admin-conf-card-list {
    display: none;
}

.admin-conf-card {
    border: 1px solid #eef1f8;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.admin-conf-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    gap: 8px;
}

.admin-conf-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1b2a52;
}

.admin-conf-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #6b7395;
    margin-bottom: 0.75rem;
}

.admin-conf-card-actions {
    display: flex;
    gap: 8px;
}


.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.admin-tab {
    padding: 8px 18px;
    border: 1px solid #cdd5e8;
    border-radius: 6px 6px 0 0;
    background: #f4f6fb;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7395;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-tab-active {
    background: #fff;
    border-bottom-color: #fff;
    color: #0f2f96;
    font-weight: 600;
}

.admin-tab-count {
    background: #e8eeff;
    color: #0f2f96;
    border-radius: 999px;
    padding: 1px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-tab-active .admin-tab-count {
    background: #0f2f96;
    color: #fff;
}


@media (max-width: 768px) {
    .admin-table-wrapper {
        display: none;
    }

    .admin-conf-card-list {
        display: block;
    }
}
