/* KOMPLETT NEUE SIDEBAR - ersetze Standard Django Admin Sidebar */

/* Verstecke alle Standard Django Admin Module UND ersetze mit neuer Navigation */
#nav-sidebar {
    max-width: 200px !important;
}

#nav-sidebar .module:not(.custom-nav-module) {
    display: none !important;
}

/* Erstelle neue Navigation direkt mit CSS */
#nav-sidebar::before {
    content: "";
    display: block;
    width: 100%;
}

#nav-sidebar::after {
    content: "🏢 OBJEKTE\A👥 MIETER\A💰 FINANZEN\A🛠️ TOOLS\A📊 STAMMDATEN\A👤 AUTH";
    white-space: pre-line;
    display: block;
    padding: 10px;
    background: linear-gradient(135deg, #417690 0%, #2c5aa0 100%);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Stelle sicher, dass nur unsere Navigation sichtbar ist */
#nav-sidebar {
    max-width: 200px !important;
}

/* Kollabierbare Module Styles */
.toggle-icon {
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    margin-right: 5px !important;
}

.collapsible-module.expanded .toggle-icon {
    transform: rotate(90deg) !important;
}

.collapsible-module.expanded .collapsible-content {
    display: block !important;
}

.collapsible-header {
    cursor: pointer !important;
}

.collapsible-header:hover {
    opacity: 0.9 !important;
}