        /* Úvodná obrazovka */
        .intro-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* height: 100vh; */
            /* background-color: #f0f0f0; */
            /* position: absolute; */
            /* top: 0; */
            /* left: 0; */
            /* width: 100%; */
            /* z-index: 10; */
        }

        .game-container {
            display: none;
            flex-direction: column;
            align-items: center;
            border: 1px solid #000;
            padding: 10px;
            background-color: white;
        }

        .board {
            font-family: monospace;
            color: rgb(9, 38, 93);
            line-height: 1.0;
            background-color: #f0f0f0;
            padding: 10px;
        }

        .sky {
            color: aqua;
        }

        .score {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 1.5rem;
            text-shadow: 1px 1px;
            margin-top: 10px;
        }

        .popis {
            margin-top: 10px;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            color: blueviolet;
            text-align: center;
            text-shadow: 1px 1px;
        }

        .bunka {
            display: inline-block;
            width: 14px;
            height: 12px;
            text-align: center;
            /* border-style: solid 1px blue; */
        }

        .plane {
            /* display: inline-block; */
            width: 25px;
        }

        @-moz-document url-prefix() {
            .bunka {
                display: inline-block;
                width: 18px;
                height: 12px;
                text-align: center;
                /* border-style: solid 1px blue; */
            }
        }

        .font-12 {
            /* font-size: normal; */
        }

        .strecha {
            /* color: brown; */
            font-weight: bold;
            color: darkblue;
        }

        .game-over,
        .victory {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 2rem;
            text-shadow: 1px 1px;
            color: red;
            text-align: center;
        }

        .victory {
            color: green;
        }

        .bomb-count {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 1.0rem;
            height: 20px;
            width: 270px;
            text-shadow: 1px 1px;
            /* align-self: first baseline;  */
            margin-top: 5px;
            margin-bottom: 15px;
            /* margin-left: 17%; */
            padding-bottom: 15px;
            /* text-align: left; */
            /* transform: translateX(-223px); */
            /* align-self: flex-end; */
            text-align: left;
        }

        .button-start {
            padding: 10px 20px 10px 20px;
            font-size: 16px;
            margin-bottom: 15px;
            margin-top: 20px;
            cursor: pointer;
        }

        .rounded-picture {
            border-radius: 50%;
            border: solid black 1px;
            /* margin: 2px; */
            padding: 3px;
            box-sizing: border-box;
        }

        .mute-btn {
            background-color: transparent;
            color: #1b5891;
            border: none;
            cursor: pointer;
            font-size: 24px;
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 100;
        }

        .colorred {
            color: red
        }

        #pause-button {
            background-color: transparent;
            color: #1b5891;
            border: none;
            cursor: pointer;
            font-size: 24px;
            position: absolute;
            top: 50px;
            /* Upraví sa, aby bol pod mute buttonom */
            right: 22px;
            z-index: 100;
        }

        @keyframes plane-fly-off {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(100vw);
                /* Lietadlo odlieta doprava cez celú obrazovku */
            }
        }

        .score-list-container {
            margin-top: 10px;
            text-align: center;
            margin-left: 3vw;
            margin-right: 3vw;
            margin-bottom: 5vh;
            /* margin-top: 1vh; */
            box-shadow: 0px 0px 10px rgba(114, 114, 113, 0.5);
            border-radius: 15px;
        }

        table {
            width: 100%;
            margin: 0 auto;
            border-collapse: collapse;
            /* Nastavenie zaoblených rohov */
            border-radius: 0 20px 20px 0;
            /* lavy dolny roh a pravy horny roh */
        }

        th,
        td {
            padding: 10px;
            border: 1px solid #ccc;
            text-align: center;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            /* min-width: 120px; */
        }

        th {
            background-color: #1b5891;
            color: white;
        }

        tr:nth-child(odd) {
            background-color: #ffeeff;
        }

        tr:nth-child(even) {
            background-color: #fafafa;
        }

        /* Nastavíme šírku prvého stĺpca */
        table th:first-child,
        table td:first-child {
            width: 10%;
            /* Prvý stĺpec bude mať menšiu šírku */
        }

        /* Ostatné stĺpce rozdelíme rovnomerne */
        table th:nth-child(2),
        table td:nth-child(2),
        table th:nth-child(3),
        table td:nth-child(3) {
            width: 45%;
            /* Zvyšné dva stĺpce budú širšie */
        }


        /* .submit-score-form {
            margin-top: 5px;
            margin-bottom: 5px;
        } */


        /* Obal pre formulár */
        #submit-score-form {
            /* - display: flex; */
            /* - flex-direction: column; */
            /* - align-items: center; */
            /* - background-color: #f0f8ff; */
            /* - border-radius: 8px; */
            /* - padding: 20px; */
            /* - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
            max-width: 200px;
            margin: 0 auto;
        }

        /* Štýl pre vstupné pole */
        #submit-score-form input {
            width: 100%;
            padding: 10px;
            margin-top: 25px;
            border: 2px solid #2a9d8f;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #ffffff;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Zameranie na vstupnom poli */
        #submit-score-form input:focus {
            outline: none;
            border-color: #6547eb;
            box-shadow: 0 0 5px rgba(75, 30, 199, 0.5);
        }

        #submit-score-form input {
            width: 100%;
            padding: 10px;
            margin-top: 25px;
            border: 2px solid #2a9d8f;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #ffffff;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Zameranie na vstupnom poli */
        #submit-score-form input:focus {
            outline: none;
            border-color: #6547eb;
            box-shadow: 0 0 5px rgba(75, 30, 199, 0.5);
        }