/* Superadmin Visual Indicators */

/* Superadmin navigation styling */
.fi-topbar[data-superadmin="true"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    border-bottom: 2px solid #fbbf24;
}

/* Superadmin sidebar styling */
.fi-sidebar[data-superadmin="true"] {
    border-right: 3px solid #f59e0b;
}

.fi-sidebar[data-superadmin="true"] .fi-sidebar-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 1px solid #f59e0b;
}

/* Superadmin user menu styling */
.fi-dropdown-list-item[data-superadmin-status="true"] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border: 1px solid #f59e0b !important;
    font-weight: 600 !important;
}

/* Superadmin badge animations */
.superadmin-badge {
    animation: superadmin-glow 2s ease-in-out infinite alternate;
}

@keyframes superadmin-glow {
    from {
        box-shadow: 0 0 5px #fbbf24, 0 0 10px #fbbf24, 0 0 15px #fbbf24;
    }
    to {
        box-shadow: 0 0 10px #f59e0b, 0 0 20px #f59e0b, 0 0 30px #f59e0b;
    }
}

/* Superadmin panel accent */
.fi-main[data-superadmin="true"]::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    z-index: 1000;
    animation: superadmin-pulse 3s ease-in-out infinite;
}

@keyframes superadmin-pulse {
    0%,
    100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Superadmin form styling */
.fi-fo-field-wrp[data-superadmin="true"] {
    border-left: 3px solid #f59e0b;
    padding-left: 1rem;
}

/* Superadmin table styling */
.fi-ta-table[data-superadmin="true"] thead {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Superadmin notification styling */
.fi-no-notification[data-superadmin="true"] {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
