/* Basis-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    min-height: 100vh;
    padding-top: 80px;
}

/* Kompakte Sprachauswahl */
.compact-language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-toggle {
    background: white;
    border: 2px solid #4a6fa5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(74, 111, 165, 0.2);
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.language-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(74, 111, 165, 0.3);
    background: #4a6fa5;
    color: white;
}

/* Sprachoptionen */
.language-options {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 10px;
    min-width: 160px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-options.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    margin: 5px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
}

.language-option:hover {
    background: #f0f5ff;
    transform: translateX(-3px);
}

.language-option.active {
    background: #4a6fa5;
    color: white;
}

/* Hauptinhalt */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.demo-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .compact-language-switcher {
        top: 15px;
        right: 15px;
    }
}
