        /* Styl dla kontenera dropdown */
        .dropdown {
            position: relative;
            width: 100%;
            margin:0 auto;
            text-align: center;
        }



        /* Styl dla przycisku otwierającego listę */
        .dropdown-btn {
            width: 100%;
            background-color: #4CAF50;
            color: white;
            padding: 12px;
            font-size: 24px;
            border: none;
            border-radius: 8px 0;
        }
        .dropdown-btn:hover { background-color: #1d5b20 !important;color:#fff; }

        .dropdown button::after {
                content: "⮟";
    position: absolute;
    font-size: 40px;
    color: #fff;
    text-shadow: none;
    right: 8px;
    top: 0;
        }

        /* Styl dla listy rozwijanej */
        .dropdown-content {
            display: none;
            position: absolute;
            width: 100%;
            background-color: white;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1;
            max-height: 400px; /* Maksymalna wysokość listy przed przewijaniem */
            overflow-y: auto; /* Dodanie przewijania */
            border-radius: 0 0 18px 18px;
        }

        /* Styl dla linków w liście */
        .dropdown-content a {
            color: black;
            padding: 12px;
            display: block;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
        }

        /* Zmiana koloru po najechaniu */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

.rune-container {
    margin: 0 auto;
    text-align: center;
    font-size: 26px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap:7px;
    overflow:hidden;
        }

        .rune {
            display: inline-block;
            padding: 4px;
        }
