
        body {
            background: linear-gradient(135deg, #5b7cff 0%, #4ecdc4 50%, #5b9cff 100%);
            min-height: 100vh;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .dashboard-container {
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card-custom {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 2rem;
            border: none;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }

        .header-card {
            padding: 1.5rem;
        }

        .icon-box {
            background: linear-gradient(135deg, #5b7cff 0%, #4ecdc4 100%);
            padding: 1rem;
            border-radius: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .icon-box svg {
            width: 32px;
            height: 32px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .time-display {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .date-display {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        .departure-card {
            background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
            border-radius: 1rem;
            padding: 1rem;
            margin-bottom: 0.75rem;
            border-left: 4px solid #5b7cff;
            transition: all 0.3s ease;
        }

        .departure-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateX(2px);
        }

        .line-number {
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 0.75rem;
            min-width: 60px;
            text-align: center;
            color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .line-yellow { background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%); }
        .line-green { background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); }
        .line-blue { background: linear-gradient(135deg, #2980b9 0%, #3498db 100%); }
        .line-purple { background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%); }
        .line-pink { background: linear-gradient(135deg, #e91e63 0%, #f06292 100%); }

        .departure-time {
            font-size: 1.75rem;
            font-weight: bold;
            color: #5b7cff;
        }

        .weather-card {
            background: linear-gradient(135deg, #ff9966 0%, #ffcc66 100%);
            color: white;
            border-radius: 2rem;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .weather-temp {
            font-size: 3rem;
            font-weight: bold;
        }

        .weather-detail {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 1rem;
        }

        .quick-action-btn {
            padding: 1rem;
            border-radius: 1rem;
            border: none;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 0.75rem;
        }

        .quick-action-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-lights { background: linear-gradient(135deg, #5b7cff 0%, #4ecdc4 100%); }
        .btn-heating { background: linear-gradient(135deg, #8e44ad 0%, #e91e63 100%); }
        .btn-doors { background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); }
        .btn-scenes { background: linear-gradient(135deg, #ff9966 0%, #ffcc66 100%); }

        .footer-info {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 2rem;
            padding: 1rem;
            text-align: center;
            color: #7f8c8d;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-title h2 {
            margin: 0;
            color: #2c3e50;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .section-subtitle {
            font-size: 0.875rem;
            color: #7f8c8d;
            margin: 0;
        }

        svg {
            stroke-linecap: round;
            stroke-linejoin: round;
        }













.search-container {
    position: relative;
    display: inline-block;
}

/* Eingabefeld standardmäßig versteckt */
.search-input {
    display: none;
    position: absolute;
    top: 120%; /* etwas unter dem Icon */
    right: 0;
    width: 250px;
    max-width: 90vw;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 100;
    box-sizing: border-box;
}
.search-station {
    width: 250px;
    max-width: 90vw;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 100;
    box-sizing: border-box;
}
.search-input.show {
    display: block;
}

/* Vorschläge */
.suggestions {
    list-style: none;
    position: absolute;
    right: 0;
    top: calc(120% + 35px);
    width: 250px;
    max-width: 90vw;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    display: none;
    z-index: 101;
    box-sizing: border-box;
}

.suggestions.show {
    display: block;
}

.suggestions li {
    padding: 8px 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background: #f0f0f0;
}

/* Kein horizontales Scrollen global */
html, body {
    overflow-x: hidden;
}