  .arena_desc_box {
width: 95%;
  background-color: #f9f9f9;
  margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 1%;
  margin-bottom: 1%;
        }

        /* Hover-Effekt für Tribute-Karten */
        .arena_desc_box:hover {
            transform: scale(1.05); /* Vergrößert die Karte bei Hover */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stärkere Schattierung bei Hover */
        }



.arena_desc {
    font-family: 'Montserrat', sans-serif; /* Gleiche Schriftart wie die Fakt-Boxen */
    font-size: 12px; /* Lesbare Schriftgröße */
    line-height: 1.6; /* Angenehmer Zeilenabstand */
    color: #666; /* Dunkelgraue Schriftfarbe für gute Lesbarkeit */
    background-color: #ffffff; /* Weißer Hintergrund für Kontrast */
    border-radius: 8px; /* Leicht abgerundete Ecken */
    padding: 15px; /* Innenabstand für mehr Raum */
    margin-top: 10px; /* Abstand zum oberen Element */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Leichte Schattierung für Tiefe */
    border: 1px solid #ddd; /* Dezenter Rand */
    box-sizing: border-box; /* Berücksichtigt Padding und Border */
}

/* Stil für Absätze im Beschreibungsfeld */
.arena_desc {
    margin: 10px 0; /* Abstand zwischen den Absätzen */
    color: #555; /* Etwas dunklere Farbe für Absätze */
}

/* Hervorhebung von Schlüsselwörtern im Beschreibungsfeld */
.arena_desc strong {
    color: #333; /* Dunklere Schriftfarbe für Betonung */
    font-weight: 600; /* Fettgedruckt für Betonung */
}

.area_border {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 auto;
    margin-top: 1%;
    margin-bottom: 1%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.area_border:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.area_name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.area_desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.area_special {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #e0f7fa;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    text-align: center;
}

select[multiple] {
    width: 100%; /* Maximale Breite */
    height: auto; /* Automatische Höhe */
    min-height: 120px; /* Mindesthöhe, damit mehrere Optionen angezeigt werden */
    max-height: 200px; /* Maximalhöhe zur Begrenzung */
    box-sizing: border-box; /* Einschließt Padding und Border in den Breiten- und Höhenwert */
    padding: 10px; /* Innenabstand */
    font-family: 'Montserrat', sans-serif; /* Gleiche Schriftart wie der Rest */
    font-size: 12px; /* Schriftgröße */
    border-radius: 8px; /* Abgerundete Ecken */
    border: 1px solid #ddd; /* Randfarbe */
    background-color: #ffffff; /* Hintergrundfarbe */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schattierung für Tiefe */
}