* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', 'sans-serif';

}

body {
  background-color: #073b36;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    
}

.container {
    width: 99%;
    border-radius: 3%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1%;
    height: 5vh;
}

h1 {
    font-size: 6vw; /* Elastīgs izmērs, kas pielāgojas ekrāna platumam */
    font-weight: bold;
}

.logo p {
    text-align: right;
    font-size: 4vw; /* Pielāgojas ekrānam */
}

.contentMain {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Divas kolonnas */
    grid-auto-rows: max-content; /* Neļauj rindu augstumam lieki pieaugt */
    row-gap: 10%; /* Samazina vertikālo atstarpi */
    column-gap: 5%; /* Atstāj nelielu horizontālo atstarpi */
    margin: 0% 0; /* Pievienota atstarpe starp header, footer un content */
    
    flex-grow: 1; /* Aizpilda brīvo vietu */
    padding-bottom: 0%; /* Pievienota atstarpe starp cards un navigācijas joslu */
    height: calc(100vh-10vh-8vh);

.card {
    background-color: #e0ebe8;
    border-radius: 5%;
    padding: 0.5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 110%; /* Nodrošina, ka kartiņas ir pietiekami garas */
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.card::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 235, 232, 0.5);
    border-radius: 5%; /* Saglabā apaļos stūrus, ja nepieciešams */
    z-index: -1;
}
.card:active {
    background-color: #c0d6d3; /* Iekrāso kartiņu, kad to nospiež */
    transform: scale(0.98); /* Mazliet samazina izmēru, lai radītu nospiešanas efektu */
    
}
}

.card img {
    width: 80%; /* Attēlu izmērs kā procents no kartiņas platuma */
    height: auto;
}

.card p {
    color: #073b36;
    font-size:6vw; /* Teksta izmērs adaptīvs */
    margin-top: 1%;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 3%;
    margin: 5% 0;
    flex-grow: 1;
    padding-bottom: 10%;
}

.option {
    background-color: #e0ebe8;
    color: #073b36;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 5vw;
    height:15%;
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.option img {
    width: 15%;
    height: auto;
}


.containerKalkulators {
    width: 90%;
    max-width: 800px;
    border-radius: 3%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 95vw;
}
.status {
    display: flex;
    justify-content: space-between;
    color: #e0ebe8;
    font-size: 5vw;
    margin-bottom: 5%;
    margin-top: 5%;
}

.display {
    background-color: #d3d3d3;
    color: #000;
    padding: 10px;
    display: flex; /* Izvieto saturu rindā */
    align-items: center; /* Vertikāli centrē piemēru un ievades lauku */
    justify-content: space-between; /* Atstāj atstarpi starp elementiem */
    border-radius: 10px;
    font-size: 7vw;
    margin-bottom: 5%;
    height: 13%;
    white-space: nowrap; /* Neļauj saturam lauzt rindu */
}

.display #example, #speed-example  {
    font-size: 7vw; /* Piemēra teksts atbilst ievades lauka izmēram */
    font-weight: bold;
    margin-right: 5px; /* Atstarpe starp piemēru un ievades lauku */
    letter-spacing: 0.1em; /* Palielina burtu atstarpes */
}

.display #answer, #speed-answer {
    border: none; /* Noņem robežas */
    background-color: transparent; /* Fons nav redzams */
    font-size: 7vw; /* Teksta izmērs pielāgots piemēram */
    color: #000; /* Teksta krāsa melna */
    text-align: left; /* Teksts izlīdzināts pa labi */
    width: 60%; /* Platums aizņem pusi no `display` */
    outline: none; /* Noņem fokusa apmali */
    font-weight: bold;
    letter-spacing: 0.1em; /* Palielina burtu atstarpes */
    white-space: nowrap; /* Neļauj tekstam pārnesties jaunā rindā */
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px; /* Samazināta atstarpe starp displeju un pogām */
    gap: 15px; /* Mazāka atstarpe starp pogām */
    height:50% ;
    margin-bottom: 5%; /* Atstarpe zem keypad */
    flex-grow: 1; /* Nodrošina, ka keypad aizpilda vietu pirms action pogām */
}

.keypad button {
    position: relative;
    background-color: #e0ebe8;
    color: #073b36;
    font-size: 5vw;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.keypad button::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 235, 232, 0.5);
    border-radius: 10px;
    z-index: -1;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    height: 10%;
}

.delete-button {
    position: relative;
    background-color: #ff6961;
    color: white;
    font-size: 5vw;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    flex: 1;
    margin-right: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.delete-button::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 105, 97, 0.5);
    border-radius: 10px;
    z-index: -1;
}

.submit-button {
    position: relative;
    background-color: #e9e942; /* Atjaunota iesniegšanas pogas krāsa */
    color: #073b36;
    font-size: 5vw;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    flex: 1;
    margin-left: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-button::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: rgba(233, 233, 66, 0.5); /* Caurspīdīga dzeltenā ēna */
    border-radius: 10px;
    z-index: -1;
}







.containerSaktTreninu {
    width: 99%;
    max-width: 450px;
    border-radius: 3%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95vw;
    box-sizing: border-box;
}

.contentSaktTreninu {
    flex-grow: 1; /* Aizpilda brīvo vietu starp header un pogām */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vienmērīga vertikālā izlīdzināšana */
   
    text-align: center;
}

.contentSaktTreninu h2 {
    font-size: 6vw; /* Virsraksts atbilstošā izmērā */
    margin-bottom: 1%; /* Samazina apakšējo atstarpi */
    
}

.contentSaktTreninu p, .contentSaktTreninu ol {
    font-size: 5vw;
    line-height: 1.5;
}

.contentSaktTreninu ol {
    margin: 5% ;
    padding-left: 5%;
    text-align: left;
}



/*Kalkulatora pogas*/



.action-buttons-kalkulators {
    display: flex;
 
    align-items: center;
    justify-content: space-between;
    margin-top: 9%; /* Automātiski nospiež pogas uz leju */
    gap: 1%; /* Atstarpes starp pogām */

}

.delete-button-kalk, .submit-button-kalk {
    padding: 10px 15px; /* Samazināts iekšējais izmērs */
    font-size: 5vw; /* Pogu teksts pietiekami liels */
    border-radius: 10px; /* Noapaļoti stūri */
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Ēna ap pogām */
    position: relative; /* Lai nodrošinātu ::after elementa pareizu novietojumu */
    cursor: pointer;
    flex: 1; /* Vienāda platuma pogas */
}

.delete-button-kalk {
    background-color: #ff6961; /* Sarkanā dzēšanas poga */
    color: #ffffff;
}

.submit-button-kalk {
    background-color: #e9e942; /* Dzeltenā iesniegšanas poga */
    color: #073b36;
}

/* Ēnas efekts kā keypad pogām */
.delete-button-kalk::after, .submit-button-kalk::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 235, 232, 0.5); /* Puscaurspīdīgs efekts */
    border-radius: 10px; /* Noapaļoti stūri atbilst pamata pogām */
    z-index: -1; /* Zem pogām */
}





/* Pogas */
.action-buttons-saktTreninu button {
    width: 100%;
    padding: 15px 20px;
    font-size: 4.5vw;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Ēna */
    cursor: pointer;
    margin-top: 5%; /* Atstarpes starp pogām */
    position: relative; /* Ēnojuma efekta fons */
    transition: transform 0.1s ease-in-out;
}

.action-buttons-saktTreninu button::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 235, 232, 0.5); /* Caurspīdīga ēna */
    border-radius: 10px;
    z-index: -1;
}

.back-button {
    background-color: #ff6961;
    color: white;
}

.start-button, .continue-button {
    background-color: #e9e942;
    color: #073b36;
}

button:active {
    transform: scale(0.95); /* Mazliet sarauj pogu uz nospiešanu */
}


footer {
    background-color: #e0ebe8; /* Gaiša apakšējā navigācija */
    padding: 4% 0;
    width: 100vw; /* Platums pa visu ekrāna platumu */
    position: fixed; /* Fiksēts pie ekrāna apakšas */
    bottom: 0; /* Tieši pie ekrāna apakšas */
    left: 0; /* Nodrošina, ka tā sākas no kreisās malas */
    border: none; /* Noņem apmales vai spraugas */
    height: 10vh;
}

nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

nav a img {
    width: 9vw; /* Navigācijas ikonas adaptīvs izmērs, pielāgots ekrāna platumam */
    height: auto;
    transition: transform 0.1s ease; /* Pievieno pārejas efektu */
}






/* Paziņojuma pārklājums */
#notification-overlay {
    display: none; /* Slēpj paziņojumu sākotnēji */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Patumšināts fons */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Virs pārējā satura */
}

/* Paziņojuma lodziņš */
#notification-box {
    background-color: white;
    color: #073b36;
    font-size: 5vw;
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Atstarpe starp attēlu un tekstu */
}

/* Attēla stils */
#notification-image {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}


.feedback {
    color: #ff6961; /* Sarkanā krāsa kļūdām */
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}
.feedback.correct {
    color: #73c476; /* Zaļā krāsa pareizām atbildēm */
}




/* Globāls nullēšanas stils, lai izvairītos no negaidītām atstarpēm */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Salas konteineris: pilna augstuma */
.island-container {
    width: 100%;
    height: 100vh; /* Aizpilda visu ekrānu */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Viss sākas no augšas */
    padding: 2%;
}

/* Salas nosaukums bez liekām atstarpēm */
#salaNosaukums {
    font-size: 5vw;
    margin-bottom: 10px;
}

/* Galvenais salas attēls ar dūmu efektu */
.main-island img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: all 1.5s ease;
}

/* Efekta klase */
.smoke {
    animation: smokeEffect 1.5s ease forwards;
}

/* Punktu informācijas rinda (centrēta, bet teksts blakus) */
.punkti {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4vw;
    gap: 20px;
    width: 100%;
    margin-bottom: 10px;
}

/* Šķirstāmā izvēlne (izlīdzināta) */
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.element-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0; /* Noņem ārējās atstarpes */
    width: 100%;
}
/* Elementa attēls izvēlnē */
.element-option img {
    width: 50%;
    margin: 0; /* Noņem ārējās atstarpes */
    padding: 0;
}

/* Pirkšanas poga pilna platumā */
 #pirkt,
.island-container .carousel button {
    width: 100%;
    padding: 15px;
    font-size: 5vw;
    background-color: #e9e942;
    color: #073b36;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    
}

/* Hover efekts */
#pirkt:hover {
    background-color: #0056b3;
    color: white;
}

/* Klikšķa efekts */
#pirkt:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animācija dūmu efektam */
@keyframes smokeEffect {
    0% {
        opacity: 0;
        filter: blur(20px);
    }
    50% {
        opacity: 0.5;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* Profila sadaļa */
.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centē saturu horizontāli */
    text-align: center; /* Centē tekstu zem avatara */
     /* Atstarpe starp profila sadaļu un pogām */
    
}

.avatar-img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 100%; /* Attēls aizņems 20% no skatloga augstuma */
    max-height: 25vw; /* Maksimālais augstums attēlam */
    padding-top:10%;
    margin-bottom: 2vw; /* Atstarpe starp attēlu un tekstu */
}

.profile-info p {
    margin: 0.5vw 0; /* Atstarpes starp teksta rindām */
    font-size: 5vw; /* Teksta izmērs elastīgs */
    color: #ffffff; /* Tumši zaļš teksts */
}


.profile-button-section {
    display: flex;
    flex-direction: column; /* Vertikāls izkārtojums */
    padding-top:5%;
    gap: 10%; /* Atstarpes starp pogām */
    width: 95%; /* Sekcijas pilns platums */
}

.change-avatar, .change-name, .rules-button, .reset-results, .logout-button {
    padding: 10px 15px; /* Samazināts iekšējais izmērs */
    font-size: 5vw; /* Pogu teksts pietiekami liels */
    border-radius: 10px; /* Noapaļoti stūri */
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Ēna ap pogām */
    position: relative; /* Lai nodrošinātu ::after elementa pareizu novietojumu */
    cursor: pointer;
    flex: 1; /* Vienāda platuma pogas */
    background-color: #e9e942; /* Dzeltenā iesniegšanas poga */
    color: #073b36;
}


/* Pievieno papildu caurspīdīgo ēnu zem pogām */
.profile-button-section button::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100% ; /* Samazina ēnas platumu */
    height: 100% ; /* Samazina ēnas augstumu */
    background-color: rgba(255, 255, 255, 0.3); /* Balts plīvurs */
    border-radius: 10px; /* Noapaļoti stūri atbilst pamata pogām */
    z-index: -1; /* Zem pogām */
}





/* Carousel stils */
.carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-content {
    position: relative;
    text-align: center;
}

.carousel-img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.carousel-prev, .carousel-next, .close-btn {
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
}


.login-form {
    margin-top: 20px;
    background: #ffffff; /* Balts fons formai */
    border-radius: 10px;
    padding: 20px;
margin-top:150px;;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.login-form label {
    display: block;
    font-size: 5vw;
    font-weight: bold;
    color: #073b36; /* Tumši zaļš */
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    font-size: 5vw;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.login-form button {
    width: 100%;
    padding: 15px;
    font-size: 5vw;
    background-color: #f7c419; /* Dzeltena poga */
    color: #000000; /* Melnā krāsa */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.login-form button:hover {
    background-color: #e0b116; /* Tumšāks dzeltenais hover efektam */
}

.error {
    color: #ff6961; /* Sarkans teksts kļūdām */
    font-size: 4vw;
    margin-top: 10px;
    text-align: center;
}
.login-form form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Atstarpe starp elementiem */
}
.container-login{
    width: 99%;
    max-width: 450px;
    border-radius: 3%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 95vw;
    box-sizing: border-box;
}

.container-strategijas {
    width: 99%;
    max-width: 450px; /* Maksimālais platums, lai saglabātu izskatu uz lieliem ekrāniem */
    border-radius: 3%;
    padding: 5%;
 
    flex-direction: column;
    justify-content: space-between;
    height: 95vw; /* Aizņem gandrīz visu ekrāna augstumu */
}





.statistics {
    display: flex;
    flex-direction: column;
    gap: 3%;
    flex-grow: 1; /* Līdzsvaro vietu starp header un footer */
    justify-content: center; /* Vienāda atstarpe starp kartītēm */
    overflow: hidden; /* Novērš jebkādu nevajadzīgu ritināšanu */
}

.stat-card {
    position: relative; 
    background-color: #e0ebe8;
    border-radius: 3%;
    padding: 15px;
    display: flex;
    align-items: center;
    gap:3%;
    height:25%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Slēpj ::after ārpusē esošos elementus */
}

.stat-card::after {
    content: "";
    position: absolute;
    top: 10px; /* Nobīde uz leju */
    left: 10px; /* Nobīde pa kreisi */
    width: 100%; /* Platums pielāgojas nobīdei */
    height: 100%; /* Augstums pielāgojas nobīdei */
    background-color: rgba(224, 235, 232, 0.5); /* Pievienots caurspīdīgais fons */
    border-radius: 10px; /* Apaļi stūri */
    z-index: -1; /* Baltais fons atrodas aiz kartītes satura */
    
}

.stat-icon {
    width: 40%;
    height: auto;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 3%;
}

.stat-title {
    font-size: 5vw;
    font-weight: bold;
    color: #073b36;
}

.stat-value {
    padding-top: 2%;
    font-size: 5vw;
    font-weight: bold;
    color:#78a302;
}

.stat-detail {
    font-size: 4vw;
    color: #073b36;
}
/* ✅ Stils paziņojuma logam */
/* ✅ Paziņojuma logs sākotnēji paslēpts */





.avatar-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width:100%;
    padding:5%;
   margin-top:5%;
    justify-content: flex-start; /* Vienmērīgi izkārto starp header un footer */
    padding: 0;
}

/* Avatara konteiners nekustīgi lapas augšpusē */
.avatar-fixed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    flex-grow: 1; /* Aizpilda vietu starp header un footer */
    text-align: center;
    position: relative; /* Nodrošina, ka bērni var būt absolūti */
    margin:0;
    padding-bottom:2%;
    padding-top:2%;
    flex-grow: 1;
}

.avatar-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px; /* Fiksēts augstums, lai bildes pareizi sakristu viena uz otras */
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Pogas avatara maiņai */
.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-grow:0; /* Lai aizpilda vietu starp avataru un slideri */
    width: 90%;
    padding: 5px ; /* Samazināta atstarpe augšā un apakšā */
    padding-bottom:1%;
}

.controls button {
    padding: 15px;
    font-size: 4vw;
    background-color: #e9e942;
    color: #073b36;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.controls button:hover {
    background-color: #ddd;
}
.swiper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Pielāgojas, lai būtu vienādas atstarpes */
    width: 100%;
    margin-top:0;

}
/* Swiper konteiners */
.swiper {
    width: 60%;
    height: 100%;
    margin: 0;
    display: none; /* Sākumā paslēpts */
}
.swiper-slide {
    display: flex;
    justify-content: center; /* Centrs katram attēlam */
    align-items: center;
    text-align: center;
}

.swiper-slide img {
    height: 200px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.swiper-slide img:hover {
    border: 2px solid #333;
    
}
.avatar-page-container header{
    width:85%;
}
.header-buttons {
    display: flex;
    gap: 15px; /* Atstarpe starp pogām */
}

.header-buttons button { /* Tagad šis attiecas tikai uz header pogām */
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}

#fullscreenBtn {
    width: 50px;
    height: 50px;
    background-image: url("atteli/full.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}

#infoBtn {
    width: 50px;
    height: 50px;
    background-image: url("atteli/info.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}

#logBtn {
    width: 50px;
    height: 50px;
    background-image: url("atteli/log.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}

