body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/static/background/collection_background.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
	display: flex;
	justify-content: space-around;
}

body.shop::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/static/background/shop_background_base.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
    display: flex;
    justify-content: space-around;
}

.map-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden; /* This will prevent the image from extending beyond the container's boundaries */
}

.map-container img {
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
}

#user-location {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; /* This will ensure the marker appears above the map */
}

.login-container {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
}

.logo {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 75vw;  /* zorgt ervoor dat de afbeelding niet breder wordt dan 95% van het scherm */
    height: 75vh;     /* past de hoogte van de afbeelding aan om binnen de hoogte van het scherm te passen */
    object-fit: contain;  /* past de afbeelding aan zodat deze in de gegeven hoogte en breedte past zonder de verhoudingen te verstoren */
    border-radius: 10px;
}

.login-form {
    margin-top: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.input-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.register-link {
    margin-top: 15px;
    text-align: center;
}

.link-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
}



.merchant-image-container {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 2;
}

.intro-image-container {
    position: relative; 
    display: inline-block;  /* Behoud de dimensies van de afbeelding */
}


.shop-merchant-image {
    width: 30vh; /* Adjust the width as needed */
    height: auto; /* Keep aspect ratio */
}

.mask-image,
.silhouette-image {
    opacity: 0.5;
    width: 90px;
    height: 90px;
}

.mask-image {
    opacity: 1;
}

.plant-image {
    width: 200px;
    height: 200px;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.plant-item {
    position: relative;
}

.plant-count {
    position: absolute;
    top: 0;
    left: 1;
    font-size: 100px;
    color: white;
    text-shadow: 3px 3px 4px #000000; /* gives the "glow" effect */
}

.glowing {
    border: 2px solid yellow;
    box-shadow: 0px 0px 10px yellow;
}


.selected {
    border: 2px solid red;
    box-sizing: border-box;
}

.animal-container {
    position: relative; /* Make this a positioning context */
    display: inline-block;
    margin: 30px 10px;
	width: 90px;
}

.animal-image {
	max-width: 95vh;
	max-height: 95vh;
}

.icon {
    width: 50px; /* Adjust as needed */
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    display: none; /* Hidden by default */
}

.play-icon, .qr-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    display: none;
}

.quiz-play-icon {
	width: 50px;
	height: auto;
}

.link-container {
        display: flex; /* Aligns link images in a row */
        justify-content: center; /* Centers link images horizontally */
		position: fixed; /* of 'absolute' afhankelijk van de situatie */
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000; /* hoger dan alles anders */
}

.play-icon-intro {
    position: absolute; 
    bottom: 10px;       
    right: 10px;        
    width: 150px;        
    height: auto;       
    cursor: pointer;    
}

.intro-container {
    position: relative;
}

.play-icon:hover, .qr-icon:hover {
    background: rgba(255, 255, 255, 1); /* Full white background on hover */
}

.play-icon {
    left: 0px; /* Adjust as needed */
	bottom: -50px;
}

.audio-icon {
	width: 50px;
}

.qr-icon {
	width: 40px;
	bottom: -50px;
    left: 50px; /* Adjust as needed */
}

.habitat-image {
    position: absolute;
    bottom: 0;
    right: 0; /* Start from the right bottom corner */
    width: 30px; /* Define the width */
}

.habitat-images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    position: absolute; /* Absoluut positioneren binnen de .animal-container */
    bottom: 30px; /* Zet het net onder de knoppen, pas deze waarde aan indien nodig */
    width: 100%; /* Maakt gebruik van de volledige breedte van de .animal-container */
	pointer-events: none;
}

.icon-container {
    display: flex;
    justify-content: space-between;  /* Dit zal de iconen verdelen over de beschikbare ruimte */
    margin-top: 10px;  /* Geeft wat ruimte boven de iconen */
}


.hidden-habitat-image {
    width: 29px; /* Dit is slechts een voorbeeldwaarde, pas dit aan naar de gewenste afmeting */
    height: 29px; 
    margin: 0px; /* Geeft wat ruimte tussen de afbeeldingen */
	pointer-events: none;
}



.mask-selection-habitat-image {
    position: absolute;
    top: 0;
    right: 0; /* Start from the right bottom corner */
    width: 50px; /* Define the width */
	pointer-events: none;
}

.mask-count {
    position: absolute;
	font-size: 24px;
	font-weight: bold;
    bottom: 0;      /* Aan de onderkant van de container */
    left: 0;        /* Aan de linkerkant van de container */
    background-color: rgba(255, 255, 255, 0.5); /* 50% doorzichtig wit */
    color: black;   /* Zwarte tekstkleur */
    padding: 5px 10px; /* wat ruimte rond de tekst */
    z-index: 2;     /* Optioneel: om ervoor te zorgen dat het boven andere items wordt weergegeven */
    border-radius: 5px; /* Optioneel: voor afgeronde hoeken */
}

.shop-plant-image {
    width: 100px;
    height: 100px;
}

.shop-plant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
	background-color: rgba(100, 180, 100, 0.4);
}

.shop-plant-item {
    position: relative;
}

.shop-plant-count {
    position: absolute;
    top: 0;
    left: 1;
    font-size: 100px;
    color: white;
    text-shadow: 3px 3px 4px #000000; /* gives the "glow" effect */
}
.shop-mask-image {
    width: 200px;
    height: auto;
    object-fit: contain;
	display: block;
    margin: auto;
}

.shop-plant-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.shop-mask-item{
	position: relative;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 0px;
    margin-bottom: 10px; /* Add margin between groups */
}	

.mask-owned {
	width: 50px;
	text-align: center;
}

.mask-with-owned {
    text-align: center;
}

.owned-image {
    display: inline-block;
	width: 50px;
}

.options {
    display: flex;
    justify-content: space-between; /* Dit verdeelt de ruimte gelijkmatig tussen de afbeeldingsopties */
    flex-wrap: wrap; /* Hiermee kunnen items naar de volgende regel gaan als er niet genoeg ruimte is */
}

.option-image {
    width: 100px;
    height: auto;
    cursor: pointer;
    border: 3px solid transparent; /* Voorziet een transparante rand die zichtbaar wordt als de afbeelding is geselecteerd */
	flex: 1; /* Hierdoor neemt elke optie een gelijk deel van de beschikbare ruimte */
    margin: 0 5px; /* Geeft een beetje ruimte tussen de afbeeldingsopties */
    text-align: center; /* Centreert de afbeeldingen binnen hun containers */
}

.quiz-container {
    display: flex;
	display: block;
	margin: 0 auto;
    justify-content: space-between;
    align-items: start;  /* Zorgt ervoor dat de items bovenaan beginnen als ze niet dezelfde hoogte hebben */
}

.submit-button {
    background-color: transparent;  /* Geen achtergrondkleur voor de knop */
    border: none;                   /* Geen rand */
    padding: 0;                     /* Geen padding */
    outline: none;                  /* Geen focus outline */
}

.submit-button img {
    width: 150px;                   /* Breedte */
    height: 150px;                  /* Hoogte */
}

.schaduwjager-image {
	max-width: 30vw;
    flex: 1;  /* Neemt 1/3 van de beschikbare ruimte */
    margin-right: 20px;  /* Geeft wat ruimte tussen de afbeelding en de quiz */
}


.quiz-content {
    flex: 2;  /* Neemt 2/3 van de beschikbare ruimte */
}

.option-image.selected {
    border-color: #00f; /* Verandert de randkleur van de geselecteerde afbeelding */
}

.shop-mask-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
}

.cost-amount {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    font-size: 2.5rem; /* Adjust this value to change the size of the cost */
}

.mask-cost {
	text-align: center;
}

.mask-image-container {
    text-align: center;
}


/* This will take care of the positioning if there are multiple images */
.habitat-image:nth-child(3) { right: 30px; }
.habitat-image:nth-child(4) { right: 60px; }
.habitat-image:nth-child(5) { right: 90px; }
/* Continue the pattern if you have more than 5 habitats */



.link-image {
    width: 100px; /* Adjust to your preference */
    height: 100px; /* Adjust to your preference */
}

.help-image {
    width: 50px; /* Adjust to your preference */
    height: 50px; /* Adjust to your preference */
}
