:root {
    --bg-light: #f9fafb;
    --bg-header: #ffffff;
    --bg-card: #ffffff;
    --accent: #4c6ef5;
    --text-dark: #111;
    --text-muted: #666;
    --radius: 24px;
    --radius-button: 14px;
    --shadow: 0 4px 10px rgba(0,0,0,0.05);
}

html, body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: var(--bg-header);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    background: var(--accent);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-button);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
}

.btn:hover {
    background: #5c7cff;
}

main {
    flex: 1;
    padding: 40px 60px;
}

/* Offer Cards */
.offer {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    height: auto;
    background-color: #cfd4e1;
}

.offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.home-block {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:60px;
}

.home-block .picture-left {
        order: 1;
}
    
.home-block .text-right {
        order: 2;
}

/* Home sections */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.section img {
    width: 45%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--bg-header);
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    color: var(--text-muted);
    box-shadow: var(--shadow);
    margin-top: auto;
}


/* ====== PAYOUT / EARNING TICKER ====== */
.payout-ticker {
  position: relative;
  width: 100%;
  height: 50px;
  overflow: clip;
  background: #f1f5f9;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  position: relative;
  width: 200%;
  display: flex;
  will-change: transform;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  min-width: 100%;
}

.ticker-item {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #111;
  min-width: max-content;
}

.ticker-item .user {
  color: var(--accent);
  font-weight: 600;
}

.ticker-item .amount {
  color: #16a34a;
}

.ticker-item .method {
  color: #555;
  font-style: italic;
}





/* --- Mobile Anpassungen --- */
/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
    main {
        padding: 20px 15px;
    }

    /* Drei-Schritt-Anleitung & Blöcke */
    section, .block {
        flex-direction: column !important;
        text-align: center !important;
    }

    section > div, .block > div {
        max-width: 100% !important;
        order: 0 !important;
        margin: 10px 0 !important;
    }
    
    .home-block .picture-left {
        order: 2;
    }
    
    .home-block .text-right {
        order: 1;
    }

    /* Überschriften etwas kleiner */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }

    /* Buttons mobiler-friendly */
    a.button, button {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Icons etwas kleiner */
    i.fa {
        font-size: 28px;
    }

    svg {
        width: 48px !important;
        height: 48px !important;
    }
}


@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav a {
        padding: 12px 20px;
        font-size: 1rem;
    }
}


/* Desktop Navigation bleibt unverändert */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger nur auf Mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 1.4rem; /* kleineres Icon */
    color: #333; /* gleiche Farbe wie Schrift */
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    padding: 20px;
    width: calc(100% - 40px);
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10000;
}

.mobile-overlay-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.close-overlay {
    cursor: pointer;
    font-size: 1.2rem !important;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    text-align: center;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .hamburger {
        display: block;
        margin-left: auto;
    }
}


/* =======================
   LEADERBOARD STYLING
   ======================= */

/* Hauptcontainer */
.leaderboard-container {
    text-align: center;
    max-width: 1200px;
    padding: 40px 20px;
}

/* Toggle-Buttons */
.leaderboard-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.leaderboard-toggle .btn {
    background: #e5e7eb;
    color: #111;
    border: none;
    transition: all 0.2s;
}

.toggle-btn {
    background: rgb(229, 231, 235);
    color: var(--text-dark);
    border: none;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-button);
    transition: all 0.2s ease;
    cursor: pointer;
}

.toggle-btn.active {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.toggle-btn:hover {
    background: #e2e4e7;
}

.leaderboard-toggle .btn.active {
    background: var(--accent);
    color: #fff;
}

/* === Siegerpodest / Treppchen === */
.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.podium-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.podium-card.highlight {
    transform: scale(1.0);
}

.podium-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ddd;
    margin-bottom: 10px;
}

.podium-card h3 {
    margin: 5px 0;
    font-weight: 600;
}

.podium-card p {
    color: var(--text-muted);
    font-weight: 500;
}

.podium-base {
    border-radius: 12px;
    margin-top: 10px;
}

.podium-base.gold {
    background: gold;
    height: 130px;
}

.podium-base.silver {
    background: silver;
    height: 100px;
}

.podium-base.bronze {
    background: #cd7f32;
    height: 80px;
}

.podium-rank {
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .podium {
        flex-direction: column;
        align-items: center;
    }

    .podium-card.highlight {
        transform: none;
    }

    .podium-card h3 {
    	font-size: 0.8rem !important;
    	overflow-wrap: break-word;
    }

    .podium-base {
        width: 80%;
    }
}

/* Tabelle */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.leaderboard-table th {
    background: #f9fafb;
    color: var(--text-dark);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.leaderboard-table td {
    padding: 15px;
    border-top: 1px solid #e5e7eb;
    vertical-align: middle;
}

.leaderboard-table td img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.leaderboard-table tr:hover {
    background: #f3f4f6;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
    .podium {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .podium > div {
        max-width: 300px;
    }

    .leaderboard-table th, .leaderboard-table td {
        padding: 10px;
        font-size: 0.95rem;
    }
}

/* =======================
   MOBILE PODIUM FIX
   ======================= */

/* Bisher wurde das Podest auf Mobilgeräten untereinander dargestellt.
   Jetzt bleibt es auch mobil nebeneinander, aber etwas kompakter. */
@media (max-width: 768px) {
  .podium {
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: nowrap;
  }

  .podium > div {
    max-width: 110px;
    flex: 1 1 0;
  }

  .podium img {
    width: 70px;
    height: 70px;
  }

  .podium-card h3 {
    font-size: 0.9rem;
  }

  .podium-card p {
    font-size: 0.8rem;
  }

  .podium-base.gold {
    height: 70px !important;
    width: 100% !important;
  }

  .podium-base.silver,
  .podium-base.bronze {
    height: 50px !important;
    width: 100% !important;
  }
  
  .coins {
  	width: 100%;
    	display: block;
  }
}

@media (min-width: 769px){
	.leaderboard-container {
		margin: auto;
	}
}

/* =======================
   SLIDE-IN SIDE CHAT
   ======================= */

.side-chat {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
}

/* Der schmale Griff (sichtbarer Balken) */
.chat-handle {
    background: var(--accent);
    color: #fff;
    width: 60px;
    height: 160px;
    border-top-left-radius: var(--radius-button);
    border-bottom-left-radius: var(--radius-button);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.3s ease;
}

.chat-handle:hover {
    background: #5c7cff;
    transform: translateX(-3px);
}

.chat-handle i {
    font-size: 1.6rem;
}

.chat-handle span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Das ausgeklappte Panel */
.chat-panel {
    position: relative;
    right: 0;
    width: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 500px;
    transition: all 0.4s ease;
}

/* Wenn aktiv */
.side-chat.active .chat-panel {
    width: 340px;
    opacity: 1;
    pointer-events: auto;
}

.side-chat.active .chat-handle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* Header */
.chat-header {
    background: var(--accent);
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1rem;
    margin: 0;
}

.chat-header .close-chat {
    cursor: pointer;
    font-size: 1.1rem;
}

/* Nachrichtenbereich */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: var(--radius-button);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}

.message.you {
    background: var(--accent);
    color: #fff;
    align-self: flex-end;
}

.message.other {
    background: #fff;
    color: var(--text-dark);
    align-self: flex-start;
}

/* Eingabefeld */
.chat-input {
    display: flex;
    border-top: 1px solid #e5e7eb;
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    border-bottom-left-radius: var(--radius-button);
}

.chat-input button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-bottom-right-radius: var(--radius-button);
    cursor: pointer;
    transition: background 0.2s;
}

.chat-input button:hover {
    background: #5c7cff;
}

/* Mobile */
@media (max-width: 768px) {
    .chat-handle {
        width: 50px;
        height: 120px;
    }

    .side-chat.active .chat-panel {
        width: 85vw;
        height: 70vh;
    }
}

/* =======================
   CHAT BADGE & STATUS
   ======================= */

/* Online-Status-Zeile */
.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid #e5e7eb;
}

/* Badge für ungelesene Nachrichten */
.unread-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e53935;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: none;
}

/* Wenn sichtbar */
.unread-badge.active {
    display: block;
}

/* Damit der Chat-Balken korrekt als Positionierungsreferenz dient */
.chat-handle {
    position: relative;
}



.chat-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.message-username {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  margin-left: 6px;
  margin-bottom: -4px;
}



/* === PROFILE.PHP STYLING === */
.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Titel zentrieren */
.profile-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Profil Infos */
.profile-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.profile-picture {
    text-align: center;
}

.profile-picture .btn {
    display: block;
    margin: 0 auto;
}

/* Profil-Details */
.profile-details {
    max-width: 400px;
}

.profile-details p {
    font-size: 1.1rem;
    margin: 8px 0;
}

/* Einstellungen */
.profile-settings {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.profile-settings h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.profile-settings .form-group {
    margin-bottom: 20px;
}

.profile-settings label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-settings input {
    width: calc(100% - 32px);
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.profile-settings .btn {
    display: block;
    margin: 20px auto 0;
}

/* Verdienste Chart */
.profile-earnings {
    margin-bottom: 70px;
}

.profile-earnings h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.earnings-filter {
    text-align: center;
    margin-bottom: 20px;
}

.earnings-filter .btn {
    margin: 0 5px;
}

.earnings-filter .btn.active {
    background-color: #ffd700;
    color: #000;
    font-weight: 600;
}

/* Auszahlungstabelle */
.profile-payouts {
    margin-bottom: 70px;
}

.profile-payouts h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.profile-payouts table {
    width: 100%;
    border-collapse: collapse;
}

.profile-payouts th, .profile-payouts td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.profile-payouts th {
    background-color: #f2f2f2;
    font-weight: 600;
}

.profile-affiliate {
    margin-bottom: 70px;
}

.profile-affiliate h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Konto löschen */
.profile-delete {
    text-align: center;
    margin-top: 40px;
}

.btn-danger {
    background-color: #ff4d4f;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-danger:hover {
    background-color: #ff1a1a;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .profile-info {
        flex-direction: column;
        align-items: center;
    }

    .profile-details {
        max-width: 100%;
        text-align: center;
    }
}

/* === PROFILE.PHP STYLING UPDATE === */

/* Profilbild */
.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ccc; /* neutral wie Podestbilder im Leaderboard */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Buttons unter dem Chart */
.earnings-filter .btn {
    background-color: #e5e5e5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 18px;
    margin: 0 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.earnings-filter .btn:hover {
    background-color: #d9d9d9;
    transform: translateY(-1px);
}

.earnings-filter .btn.active {
    background-color: #999;
    color: #fff;
    border-color: #888;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Chart Container */
.profile-earnings canvas {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    overflow-y: auto;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 15px 0px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%; /* Standardbreite für Desktop */
    max-width: 1200px;
    transition: width 0.3s ease;
    box-sizing: border-box;
}

/* Schließen Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -15px;
    margin-right: 10px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Responsives Design für das Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Auf mobilen Geräten 90% der Bildschirmbreite */
        max-width: 100%; /* Verhindert, dass es breiter als der Bildschirm wird */
        padding: 15px 0px;
        border-radius: 8px;
        left: 5%; /* Füge Puffer hinzu, um das Modal nicht an die Bildschirmkante zu setzen */
        right: 5%; /* Sicherstellen, dass es auf der rechten Seite nicht rausgeht */
    }
}

/* Verhindert horizontales Scrollen */
body {
    overflow-x: hidden; /* Verhindert horizontalen Scrollbalken */
}

/* Für das iframe im Modal */
.modal-content iframe {
    width: 100%;
    height: 80vh;
    border: none;
}

/* Übergangseffekte */
.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}


/* ==========================
   COOKIE CONSENT POPUP
   ========================== */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  backdrop-filter: blur(3px);
}

.cookie-popup {
  background: var(--bg-card);
  color: var(--text-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 480px;
  width: 90%;
  padding: 30px 25px;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

.cookie-popup h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.cookie-popup p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option small {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 28px;
  display: block;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cookie-buttons .btn {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-popup {
    padding: 20px 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

/* ---- Country Select ----- */

.custom-select {
    position: relative;
    /*width: 100%;*/
    user-select: none;
    font-size: 1rem;
}

.custom-select .selected-option {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    box-shadow: var(--shadow);
}

.custom-select .selected-option img {
    width: 24px;
    height: 24px;
}

.custom-select .options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 10;
    display: none;
    max-height: 220px;
    overflow-y: auto;
}

.custom-select.open .options {
    display: block;
}

.custom-select .option {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-select .option:hover {
    background: #f3f4f6;
}

.custom-select .option img {
    width: 24px;
    height: 24px;
}

/* ----- Android App Download section ------ */

.app-download-info {
    background-color: var(--accent);  /* Setzt die Hintergrundfarbe auf den Akzent */
    color: #fff;  /* Weißer Text für den Kontrast */
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    border-radius: 24px;  /* Ecken abrunden */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
}

.app-download-info p {
    font-size: 18px;
    margin-bottom: 15px;
}

.app-download-info .btn-download {
    display: inline-block;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-download-info .btn-download i {
    font-size: 20px;  /* Größe des Android-Icons */
    margin-right: 10px;  /* Abstand zwischen Icon und Text */
    margin-top: 2px;
}

.app-download-info .btn-download:hover {
    background-color: #677092;
    color: #fff;
}





