/* ============================================================
 * MENÜ-VISUALS: RECHNEN (Orange)
 * Bereichsfarbe + Button-Visuals der Module calculation /
 * crossingtens / crossingtens-arrows.
 * ============================================================ */

.big-menu-btn {
    /* Bereichsfarbe: Die Kacheln dieser Seite tragen bereits die passende
       Farbklasse (menu-buttons.css) — hier wird deshalb NUR noch das
       Überlaufen der Visuals abgeschnitten. Die frühere Wiederholung von
       Farbe + Schatten per `!important` ist entfallen: sie setzte exakt
       dieselben Werte noch einmal und überstimmte dabei jedes andere Design
       (das neue Design kam an den Kacheln dieser Seite nie an). */
    overflow: hidden;
}

/* --- Struktur (calculation, crossingtens) --- */
.visual-structure {
    position: relative;
    height: 80px;
    margin-top: 15px;
    width: 100%;
}
.state-normal,
.state-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 15px);
    transition: opacity 0.2s ease-in-out;
}
.state-normal { opacity: 1; }
.state-hover { opacity: 0; }
.big-menu-btn:hover .state-normal { opacity: 0; }
.big-menu-btn:hover .state-hover { opacity: 1; }

.visual-structure .box {
    background: white;
    border: 3px solid #d35400;
    color: #e67e22;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 900;
    padding: 0;
}
.visual-structure .op {
    color: white;
}

/* --- Emoji-Icon (crossingtens-arrows) --- */
.visual-icon-container {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}
.visual-icon-container .symbol {
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.2));
    font-size: calc(clamp(35px, 8vw, 55px) * 1.2);
}
