 body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            min-height: 100vh;
        }
        
        .container {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        h1 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .controls {
            text-align: center;
            margin: 2rem 0;
        }
        
        button {
            padding: 1rem 2rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            margin: 0.5rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        #startBtn {
            background: linear-gradient(45deg, #4CAF50, #45a049);
            color: white;
        }
        
        #startBtn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        #startBtn.listening {
            background: linear-gradient(45deg, #f44336, #da190b);
            animation: pulse 1.5s infinite;
        }
        
        .manage-btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(45deg, #2196F3, #1976D2);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            margin: 0.5rem;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .manage-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .status {
            background: rgba(255, 255, 255, 0.2);
            padding: 1rem;
            border-radius: 10px;
            margin: 1rem 0;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        
        .log {
            background: rgba(0, 0, 0, 0.3);
            padding: 1rem;
            border-radius: 10px;
            max-height: 300px;
            overflow-y: auto;
            margin-top: 1rem;
        }
        
        .log-entry {
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            border-left: 4px solid #4CAF50;
        }
        
        .error {
            border-left-color: #f44336;
        }
        
        .mic-icon {
            font-size: 3rem;
            margin: 1rem 0;
        }
        
        .hidden {
            display: none;
        }

        /* Einstellungen Styles */
        #controls {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        #controls.show {
            max-height: 300px;
            padding: 1rem;
        }

        .settings-content {
            opacity: 0;
            transition: opacity 0.3s ease-in-out 0.2s;
        }

        #controls.show .settings-content {
            opacity: 1;
        }

        .settings-content h3 {
            margin: 0 0 1rem 0;
            text-align: center;
            color: white;
        }

        .setting-item {
            margin: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .setting-item label {
            color: white;
            font-weight: 500;
            min-width: 150px;
        }

        .setting-item input[type="range"] {
            flex: 1;
            margin: 0 1rem;
            min-width: 100px;
        }

        .setting-item input[type="checkbox"] {
            transform: scale(1.2);
        }

        .setting-item span {
            color: #fff;
            font-weight: bold;
            min-width: 40px;
            text-align: center;
        }

        .settings-hint {
            text-align: center;
            cursor: pointer;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            margin: 1rem 0;
            transition: all 0.3s ease;
        }

        .settings-hint:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .settings-hint p {
            margin: 0;
            color: white;
            font-weight: 500;
        }

        .container.pushed-down {
            margin-top: 2rem;
            transition: margin-top 0.5s ease-in-out;
        }

        footer {
            position: fixed;
            bottom: 0;

            width: 200px;;
            height: 40px;
            text-align: center;
            font-size: 1.0rem;
            color: #ccc;
            margin:  0 10px;

            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;    
            justify-content: center;
            gap: 20px;
        }
        footer img {
            width: 40px;
            height: 40px;
            vertical-align: middle;
            margin: 0;
            padding: 0;
        }
        footer a {
            width: 100px;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
            transition:  0.3s ease;
            margin: 0;
            padding: 0;
        }
        footer a:hover {
            color: #fff;
            letter-spacing: 2px;
        }