
   audio {
            width: 52%; /* Rozmiar playera */
			
        }

        Canvas{
            width:  250%;
			border: 10px;
            margin: 20px;
			height: 10px;
            margin-left: 25%; /* Przesuniecie canvas w prawo */
		
        }
		





         /* Przesunięcie przycisku "Nagrywanie audio" i "Start" o 5px w lewo */
        #audioControls button#recordButton  {
         margin-right: -4%;
	
        }

        /* Przesunięcie przycisku "Stop" o 2px w lewo względem przycisku "Start" w tej samej linii */
        #audioControls button#stopButton {
        margin-left: 5%;
        }

       /* Przesunięcie opisu "Mapa radarowa" o 20px w prawo od przycisku "Otwórz" w tej samej linii */
       #audioControls button#openmapsdButton +span{
       margin-left: 3%;
       }


       #audioControls button {
       background-color: #E0E0E0; /* Kolor tła */
       color: black; /* Kolor tekstu */
       padding: 3px 10px; /* Rozmiar przycisków */
       border: none; /* Brak obramowania */
       border-radius: 5px; /* Zaokrąglenie naroży */
       cursor: pointer; /* Kursor wskaźnika */
       margin: 5px; /* Odstęp między przyciskami */
  /* Inne stylizacje według potrzeb */
}

#audioControls button:hover {
  background-color: #2C78C3; /* Kolor tła po najechaniu myszką */
}

#audioControls button#recordButton {
  background-color: #D42705; /* Kolor tła przycisku "Start" */
  color: white; /* Kolor tekstu */
}

#audioControls button#recordButton:hover {
  background-color: #2C78C3; /* Kolor tła po najechaniu myszką */
}


    /* Styl dla dodatkowej kreatywności */
        .audioinfo-div {
            background-color: ;
            padding: 10px;
            text-align: center;
			position: fixed;
			left: 32%;
			top: 72%;
            transform: translateY(-20%, -50%);
			
        }
		
		
		
		

    /* Styl dla dodatkowej kreatywności */
        .opis-div {
            padding: 10px;
            text-align: center;
            position: fixed;
            left: 36%;
            top: 40%;
            transform: translate(-20%, -50%);
			
        }



select {
            width: 35%;   /* Wszystkie ustawienia dla pola wyboru  */
            padding: 3px;
            font-size: 14px;
            border: 1px solid #E9E9E9;
            border-radius: 3px;
        }

        select:focus {
            outline: none;
        }

        select option:nth-child(odd) {
            background-color: #FFFFFF; /* Biale tlo dla nieparzystych elementów */
        }

        select option:nth-child(even) {
            background-color: #f0f0f0; /* Szare tlo dla parzystych elementów */
        }

        select:focus {
            outline: none;
        }


        #radarContainer {
            position: relative;
            width: 100%;
        }

        #radarFrame {
            display: none;
            width: 90%;
            height: 90%;
            position: absolute;
            bottom: 10%;
        }
	

        /* Styl przycisku "Zamknij mape" */
        #closemapButton {
            position: absolute;
            top: 10px;
            right: 200px;
        }

        #connectionStatus  {
            background-color: #BA0D0D;
			background-size: 100% 100%; /* szerokość x wysokość */
            color: white;
            padding: 0%;
            border-radius: 1%;
            margin-top: 3%;
			width: 18%;
			margin-left : 43%;
			position: relative;
        }


        /* Nowy styl dla kola postepu */
        #progressWheel {
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-top: 5px solid white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin: 0 auto;
            animation: spin 2s linear infinite;
			position: relative;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


