
        body {
			
            background-image: url('https://live.staticflickr.com/65535/53146467489_32aa52f2f3_o.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            margin: 0;
            padding: 0;
            height: 100vh;
            font-family: Arial, sans-serif;
			
        }

        .container {
            position: absolute;
            top: 15%;
            left: 12.5%;
            width: absolute;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 10px;
        }

        h1,
        h3 {
            color: white;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
			
        }

        .form-group label {
            font-size: 20px;
            margin-bottom: 10px;
            color: white;
        }

        input,
        textarea {
            font-size: 14px;
            padding: 5px;
            color: black;
			height: auto;
            background-color: white;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        input[type="submit"] {
            padding: 10px 20px;
            background-color: #fdc244;
            border: none;
            color: black;
            font-size: 20px;
            cursor: pointer;
            font-weight: bold;
            width: 250px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: #fda634;
        }

        input[type="submit"]:active {
            transform: scale(0.95);
        }

        br {
            margin-bottom: 10px;
        }
        label {
            color: #fdc244;
            display: block;
            font-size: 15px; /* Zwiększony rozmiar czcionki dla etykiety */
        }

        input[type="text"],
        input[type="email"],
        input[type="number"],
        textarea {
            width: 500px;
            min-height: 30px; /* Zwiększona wysokość pól do wpisania */
            padding: 5px 10px; /* Dodane wewnętrzne marginesy dla lepszego wyglądu */
        }

#authSection {
    position: fixed; /* Pozycjonowanie względem nadrzędnego kontenera */
    top: 5%; /* Odległość od góry */
    right: 10%; /* Odległość od prawej strony */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Wyrównanie do lewej strony */
    background-color: rgba(0, 0, 0, 0.7); /* Ciemne tło z lekką przezroczystością */
    padding: 10px; /* Wewnętrzny margines dla lepszego wyglądu */
    border-radius: 5px; /* Zaokrąglone rogi */
}

#token {
    margin: 10px 0; /* Dodanie marginesu dla lepszego wyglądu */
    padding: 5px 10px; /* Dodanie wewnętrznego marginesu dla lepszego wyglądu */
    width: 227.5px; /* Szerokość pola do wpisania */
    font-size: 14px;
    height: 30px;
    color: black;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#authorizeBtn {
    padding: 10px 20px;
	display: center;
    background-color: #fdc244;
    border: none;
    color: black;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    width: 250px;
    transition: background-color 0.3s ease, transform 0.3s ease;
	border-radius: 5px; 
}

#authorizeBtn:hover {
    background-color: #fda634;
}

#authorizeBtn:active {
    transform: scale(0.95);
}
.blurred {
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
}

.authButton {
    padding: 10px 20px;
	margin-top: 5px;
    background-color: #fdc244;
    border: none;
    color: black;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    width: 250px;
	border-radius: 5px; 
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.authButton:hover {
    background-color: #fda634;
}

.authButton:active {
    transform: scale(0.95);
}

body {
    padding-top: 10%;
    padding-left: 10%;
    font-size: 15px; /* Domyślna wielkość czcionki dla całego dokumentu */
}

/* Zmiana koloru tła dla listy */
ul#gamesList {
    background-color: rgba(0, 0, 0, 0.7); /* Pomarańczowy kolor */
	position: absolute;
    padding: 20px; /* Dodajemy trochę wewnętrznego odstępu, aby treść nie była zbyt blisko krawędzi */
    border-radius: 10px; /* Zaokrąglenie rogów dla estetyki */
}

/* Styl dla elementu <summary> */
summary {
    cursor: pointer; /* Pokazuje, że element jest klikalny */
    color: #fdc244;; /* Biały kolor tekstu dla lepszego kontrastu z pomarańczowym tłem */
}

/* Styl dla szczegółów gry */
details > div {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    background-color: white; /* Białe tło dla szczegółów, aby były czytelne na pomarańczowym tle */
}

.authButton:disabled {
    background-color: #ccc; /* jasnoszary kolor tła */
    cursor: not-allowed; /* kursor wskazujący, że przycisk jest nieaktywny */
    opacity: 0.7; /* nieco przezroczysty, aby wyglądał na "wygaszony" */
}


#gameQuery {
    width: 227.5px;
	margin-top: 5px;
}

ul#gameDetails {
    background-color: rgba(0, 0, 0, 0.7); /* Pomarańczowy kolor */
	position: absolute;
    padding: 20px; /* Dodajemy trochę wewnętrznego odstępu, aby treść nie była zbyt blisko krawędzi */
    border-radius: 10px; /* Zaokrąglenie rogów dla estetyki */

