/* Custom Branding Styles */
.filament-sidebar-brand {
    display: none !important;
}

/* Hide Filament footer */
.filament-footer,
.fi-footer,
.fi-sidebar-footer {
    display: none !important;
}

/* Hide promotional banners */
.filament-banner,
.fi-banner,
.filament-promotion {
    display: none !important;
}

/* Hide external links */
a[href*="filamentphp.com"],
a[href*="github.com/filamentphp"] {
    display: none !important;
}

/* Custom user header styling */
.filament-sidebar .custom-user-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: -1rem -1rem 1rem -1rem;
    padding: 1.5rem 1rem;
    border-radius: 0;
}

.filament-sidebar .custom-user-header h2 {
    color: white !important;
    margin: 0;
}

.filament-sidebar .custom-user-header p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0.25rem 0 0 0;
}

/* Adjust main brand area */
.filament-brand {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-user-header {
        padding: 1rem 0.75rem;
    }
}