/* --- PROFESSIONAL DASHBOARD THEME --- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9; /* Slate 100 */
    color: #1e293b; /* Slate 800 */
    min-height: 100vh;
    margin: 0;
    overflow: hidden; /* Für Dashboard Layout */
}

/* Dashboard Utilities */
.dashboard-card {
    background: white;
    border: 1px solid #e2e8f0; /* Slate 200 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem; /* 12px */
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #94a3b8; /* Slate 400 */
    transition: all 0.2s;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
}

.sidebar-link:hover {
    background: rgba(255,255,255,0.05);
    color: #f8fafc;
}

.sidebar-link.active {
    background: #2563eb; /* Blue 600 */
    color: white;
}

.glass-input {
    background: white;
    border: 1px solid #cbd5e1; /* Slate 300 */
    transition: all 0.2s ease;
}

.glass-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step Helpers */
.hidden-step { display: none !important; }

/* Custom Scrollbar for Content */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Drop Zone Clean */
.drop-zone {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    transition: all 0.2s;
}
.drop-zone:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

/* Print Overrides */
@media print {
    aside { display: none !important; }
    header.dashboard-header { display: none !important; }
    main { margin: 0; padding: 0; height: auto; overflow: visible; }
    body { background: white; overflow: visible; }
    #step-4 { display: block !important; }
}

/* Legacy Support (damit alte IDs nicht brechen) */
.glass-card {
    @extend .dashboard-card; /* Conceptually */
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem; 
}