/* Admin Tabs Fix - Add to bottom of style.css */

.admin-tabs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(4, 16, 32, 0.6) !important;
    border: 1px solid #21476d !important;
}

.admin-tabs button {
    display: inline-block !important;
    visibility: visible !important;
    padding: 11px 16px;
    background: #0b213f;
    border: 1px solid #21476d;
    color: #93a8bd;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.admin-tabs button:hover {
    background: rgba(20, 125, 245, 0.2);
    color: #cbd5e1;
    border-color: #147df5;
}

.admin-tabs button.active {
    background: #147df5 !important;
    border-color: #147df5 !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(20, 125, 245, 0.4);
}
