/* Special styling for silus and kinder super admin accounts - removed */

/* Special admin dashboard enhancements */
.super-admin-badge {
    background: linear-gradient(45deg, #ef4444, #f97316);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    border-radius: 9999px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.admin-special-feature {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 2px solid #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.admin-special-feature:hover {
    border-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}