/* ============================================
   Haider NAS - Filebrowser Custom CSS
   ============================================ */

/* 1. Logo anpassen */
.header .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .brand-logo span {
    font-weight: bold;
    font-size: 1.5rem;
    color: #2c3e50;
}

/* 2. Header Hintergrund */
.header {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    border-bottom: 3px solid #1B5E20 !important;
}

/* 3. Button Farben anpassen */
.button.is-primary,
.button.is-link {
    background-color: #4CAF50 !important;
    border-color: #2E7D32 !important;
}

.button.is-primary:hover,
.button.is-link:hover {
    background-color: #388E3C !important;
    border-color: #1B5E20 !important;
}

/* 4. Sidebar anpassen */
.sidebar {
    background-color: #f8f9fa !important;
    border-right: 1px solid #dee2e6 !important;
}

/* 5. Tabellen-Zeilen abwechselnd einfärben */
.table tbody tr:nth-child(even) {
    background-color: #f8f9fa !important;
}

.table tbody tr:hover {
    background-color: #e8f5e9 !important;
}

/* 6. Breadcrumb Navigation */
.breadcrumb {
    background-color: #f1f8e9 !important;
    border-radius: 4px;
    padding: 8px 12px;
}

/* 7. Footer anpassen */
.footer {
    background-color: #2c3e50 !important;
    color: #ecf0f1 !important;
    padding: 1rem 1.5rem;
}

/* 8. Success/Error Messages */
.notification.is-success {
    background-color: #e8f5e9 !important;
    border-left: 4px solid #4CAF50 !important;
}

.notification.is-danger {
    background-color: #ffebee !important;
    border-left: 4px solid #f44336 !important;
}

/* 9. File-Icons farblich anpassen */
.file-icon {
    filter: hue-rotate(120deg);
}

/* 10. Responsive Anpassungen für Mobile */
@media (max-width: 768px) {
    .header .brand-logo span {
        font-size: 1.2rem;
    }
    
    .button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}