.language-selector {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    background: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector select {
    border: none;
    background: none;
    font-size: 0.875rem;
    cursor: pointer;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

/* Ensure all themes are mobile-first */
@media (max-width: 576px) {
    .language-selector {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.375rem;
    }
}


/* Floating Back Button */
.floating-back-btn2 {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: var(--menu-primary-color);
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 147, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50%;

    padding: 12px 24px;
    margin-top: 20px;
    gap: 8px;
    font-weight: 500;
    /*width: 100%;*/
}

.floating-back-btn2:hover {
    background-color: var(--secondary-color);
    /*background: var(--menu-secondary-color);*/
    transform: translateY(-2px);
    /*transform: scale(1.1);*/
}