:root{
  --gray: #7a7a7a;
  --book-container-border:    box-shadow: 5px 5px 2px #b3e4ff;
}

@font-face {
  font-family: 'Kalinga';
  src: url('fonts/kalingab.ttf') format('truetype'); /* Adjust the path as necessary */
}



  html, body {
    padding-top: 0.15rem;
    margin: 0;
  }


.App {
      font-family: "Futura", sans-serif;
    /* text-align: center; */
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 1170px;
    margin: 0 auto;
    background-color: #544d9a05;
    box-shadow: 6px 6px 0px rgb(1 215 224 / 57%);
    border-radius: 4px;
    border: 2px solid #393939;
    
  }

  .divForEmailButton{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  
  




  /* Styling for the menu */
  menu {
    list-style-type: none;
    margin: 15px;
    padding: 7px;
    text-align: left;
    border-bottom: 1px solid #d8d8d8;
    opacity: 0.93;
    display: flex;
    color:#353535

  }
  
  menu li {
    display: inline-block;
    margin-right: 10px;
    padding-bottom: 7px;
  }
  
  menu a {
   
      font-size: smaller;
      text-decoration: none;
      color:#292828;
      font-weight: bold;
      padding: 8px 12px;
      border-radius: 4px;
      box-shadow: 5px 5px 0px rgb(224, 125, 251);
      border: 1px solid black;
      transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Include transform in the transition */
      display: inline-block; /* or display: block; */
      opacity: 0.9;
  
}

menu a:hover {
    box-shadow: 0px 0px 0px rgb(171, 62, 62);
    border-color: transparent;
    transform:  translateX(3px) translateY(4px);
}
  .menu-category::selection{
    color: rgb(240, 194, 203);
    font-size: 20px;
    background-color: black;
 }

 #login-button{
  margin-left: auto;
  color:#353535;
 }
 a {
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Makes the link color the same as the surrounding text */
}
  h1 {
    /* font-family: 'Kalinga', sans-serif; Fallback to sans-serif if custom font fails to load */
    /* margin: 50px auto;
    margin-bottom: 40px; */
    margin: 0;
    /* width: 90%; */
    max-width: 20ch;
    color:#353535;
    padding: 41px;
  }

  .droppedImage{
    opacity: .9;
    border-radius: 5px;
  }
  
  .drop-area {
    /* position: relative; */
    align-items: center;
    box-sizing: border-box;
    position: relative;
    width: 80%;
    height: 100%;
 
    border-radius: 11px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 33px rgb(221 221 221);

    /* padding: 20px 0; */
    margin-top: 60px;
    /* padding-bottom: 40px;  */
    
    border: dotted 5px black;

    /* new code from old drop box */

    box-shadow: 0px 0px 0px rgb(150, 134, 255);
    border-color: black;
    transform:  translateX(3px) translateY(4px);
    border: dotted 8px black;
    background-color: rgba(156, 140, 255, 0.469);
    /* new code from old drop box */
    transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Ensure border is included in the transition */
   
   
    

  }
  .drop-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 11px; /* Match the border-radius of .drop-area */
    box-shadow: inset 0 0 5px rgba(40, 40, 40, 0); /* Initial state: no vignette */
    transition: box-shadow 0.3s ease;
    pointer-events: none; /* Prevents the pseudo-element from capturing mouse events */
    opacity: 0.75;
    
}

.drop-area:hover::after {
  box-shadow: inset 0 0 35px rgba(217, 211, 255, 0.7); /* Creates the vignette effect */
}
  
.drop-area:hover{
    
  box-shadow: 0px 0px 0px rgb(150, 134, 255);
  border-color: black;
  /* transform:  translateX(3px) translateY(4px); */
 
  background-color: rgba(91, 74, 197, 0.469);
  border: dotted 11px black; /* Increase border size on hover */
  transform: scale(1.01); /* Slightly scale up the drop area */
 
 

}

  .image-dropped-in:hover{
    
    box-shadow: 0px 0px 0px rgb(45, 15, 242);
    border-color: black;
    /* transform:  translateX(3px) translateY(4px); */
   
   
    border: dotted 11px black; /* Increase border size on hover */
    transform: scale(1.01); /* Slightly scale up the drop area */
    transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Ensure border is included in the transition */

   
   
 
  }

  /* .drop-area:hover #drag-and-drop-text{
    font-size: 1.3em; 
  } */

  .drag-hover{
    box-shadow: 0px 0px 0px rgb(45, 15, 242);
    border-color: black;
    /* transform:  translateX(3px) translateY(4px); */
   
    background-color: rgb(45, 15, 242);
    border: dotted 11px black; /* Increase border size on hover */
    transform: scale(1.01); /* Slightly scale up the drop area */
   
   


  }
  
  
  .animation-container {
    position: relative;
    width: 100px;
    height: 100px;
    opacity: .8;
    top: -30px;
    
    
  }
  


@keyframes moveDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}
  
  .drop-area:hover .arrow {
    opacity: 0.15;
    z-index: -1;
  }
  
  .center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 60vh; */
    /* margin: auto; */
    flex-direction: column;
    /* margin: -100px; */

    
  }
  
  @keyframes rotation {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -200% -200%;
    }
  }

  .upload-container {
    position: relative;
    /* margin: -100px; */
    /* margin-top: -160px; */
    margin-left: auto;
    margin-right: auto;
}

  .upload-container p {
    position: relative;
   
    position: relative;
    /* margin: -100px; */
    margin: 1rem auto auto;

  }
  
  .upload-button {
     position: relative; 
    /* top: 246px; */
    
    color: rgb(0, 0, 0);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 0.72;
    box-shadow: 5px 5px 0px #9a8ef8;
    border: 1px solid black;
    transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Include transform in the transition */
    display: inline-block; /* or display: block; */
    opacity: 0.9;
    bottom: -12px;
  }
  
  .upload-button:hover {
    box-shadow: 0px 0px 0px rgb(171, 62, 62);
    border-color: transparent;
    transform:  translateX(3px) translateY(4px);
  }
  
  .image-preview img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    opacity: 0;
    z-index: 1; /* ensures the image is above other content */
    object-fit: cover;
   
    
}
  

dt{
  color: var(--gray);
  
}

dl {
  display: flex;
  flex-direction: column;
}

dt, dd {
  display: inline-block;
  margin-right: 10px;
}

.label{
color: var(--gray);


}

#loadingIcon {
  position: absolute;
  top: 40%;
  left: 50%;
}

.row {
  display: flex;
}

.colorSq {
  width: 15px;
  height: 15px;
  margin: 1px;
  display: inline-block;
}

/* p {
font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  margin: 10px 0;
} */



.dim-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); 
  backdrop-filter: blur(3px); /* Blur effect */
  z-index: 999; 
  display: none; 
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bubble {
  0%,50%{
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
100%{
  transform: scale(1);
}
}

.loading-text {
  color: white;
  margin-top: 100px;
  animation: fadeIn 1s ease-in-out; /* Apply fade-in to the whole text */
}



.loading-text span {
  display: inline-block;
  animation: bubble 2.5s infinite; /* Apply bubble to each letter */
  animation-delay: calc(var(--index) * 0.1s); /* Calculate delay based on index */
}

.loading-text span:nth-child(1) {animation-delay: 0s;}
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.2s; }
.loading-text span:nth-child(4) { animation-delay: 0.3s; }
.loading-text span:nth-child(5) { animation-delay: 0.4s; }
.loading-text span:nth-child(6) { animation-delay: 0.5s; }
.loading-text span:nth-child(7) { animation-delay: 0.6s; }
.loading-text span:nth-child(8) { animation-delay: 0.7s; }
.loading-text span:nth-child(9) { animation-delay: 0.8s; }
.loading-text span:nth-child(10) { animation-delay: 0.9s; }


#downloadButton{
  display: none;
  box-shadow: none;
  border-color: rgb(180, 225, 225);
}

.video-game-container{
  display: flex;
  gap: 20px;
  border-radius: 4px;
  overflow: hidden;
  gap: 20px;
  margin: 6px;
  width: 97%;
  height: 50px;
  box-shadow: 6px 6px 0px rgb(1 38 224 / 40%);
  border: 1px solid #2545b680;
  position: relative;
  padding-bottom: 12px;
}

@media (max-width: 600px) {
  .video-game-container {

    gap: 5px;
    height: auto;
    margin:3px;
    font-size: 16px;
    width: 80%;
 
    
    flex-direction: column;

   

  }
}




details[open] summary ~ * {
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

details[open] > summary {
  font-size: 25px; /* Larger size when open */
  font-weight: bold;
  padding: 22px;
  text-align: left;
}



.details-open{
  height: 200px;


}


/* this below is CSS for the bookcontainer info on mobile */
@media screen and (max-width: 768px) { /* Adjust based on your mobile breakpoint */
  .details-open {
    display: none;
  }

  .book-container{
    padding: 15px;
  }
}


#drag-and-drop-text{
  font-size: 20px;
}

#result-container{
  
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  flex-wrap: nowrap;
  width: 95%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  align-items: center;
}


/* //test */

.footer {
  position: relative;
  left: 0;
 
 
  padding: 10px 0;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* Aligns content to both ends */
  align-items: center; /* Vertically centers the content */
  font-family: "Futura", sans-serif;
  margin: 15px;
  border-top: 1px solid #f1f0f0;
  
}






.footer-title{
  font-weight: bold;
}

.social-icon {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgb(224, 125, 251);
  border: 1px solid black;
  transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: 10px;
  height: 10px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.social-icon:hover {
  box-shadow: 0px 0px 0px rgb(224, 125, 251);
  border-color: transparent;
  transform:  translateX(3px) translateY(4px);
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 8px;
  opacity: .7;
  font-size: small;
}

.footer-link {
  color: #000000;
  text-decoration: none;
  margin: 2px 0;
  text-align: left;
  opacity: .8;
  font-size: smaller;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-links{
  padding-right: 45px;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 14px;
}
/* //test */
/* new test */

.fade-out{
  opacity: 0;
  transform: scale(0.95); /* Slightly shrink for visual effect */

}







.scroll-prompt {
	position: fixed;
	z-index: 998;
	bottom: -80px;
	left: 50%;
	margin-left: -80px;
	width: 160px;
	height: 160px;

	.scroll-prompt-arrow-container {
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: -18px;
		animation-name: bounce;
		animation-duration: 1.5s;
		animation-iteration-count: infinite;
	}
	.scroll-prompt-arrow {
		animation-name: opacity;
		animation-duration: 1.5s;
		animation-iteration-count: infinite;
	}
	.scroll-prompt-arrow:last-child {
		animation-direction: reverse;
		margin-top: -6px;
	}
	.scroll-prompt-arrow > div {
		width: 36px;
		height: 36px;
		border-right: 8px solid #bebebe;
		border-bottom: 8px solid #bebebe;
		transform: rotate(45deg) translateZ(1px);
	}
}

@keyframes opacity {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 0.1;
	}

	20% {
		opacity: 0.2;
	}

	30% {
		opacity: 0.3;
	}

	40% {
		opacity: 0.4;
	}

	50% {
		opacity: 0.5;
	}

	60% {
		opacity: 0.6;
	}

	70% {
		opacity: 0.7;
	}

	80% {
		opacity: 0.8;
	}

	90% {
		opacity: 0.9;
	}

	100% {
		opacity: 1;
	}
}

@keyframes bounce {
	0% {
		transform: translateY(0);
	}

	10% {
		transform: translateY(3px);
	}

	20% {
		transform: translateY(6px);
	}

	30% {
		transform: translateY(9px);
	}

	40% {
		transform: translateY(12px);
	}

	50% {
		transform: translateY(15px);
	}

	60% {
		transform: translateY(18px);
	}

	70% {
		transform: translateY(21px);
	}

	80% {
		transform: translateY(24px);
	}

	90% {
		transform: translateY(27px);
	}

	100% {
		transform: translateY(30px);
	}
}




.cloud {
  position: relative;
  display: block;
  width: 3em;
  height: 3em;
  margin: 2em auto;
  color: #e98686;
  background: #fff;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 50% 50% 0 0;
}

.cloud:before,
.cloud:after {
  content: '';
  position: absolute;
  bottom: -0.25em;
  background: inherit;
  border-width: 0.25em;
  border-style: solid;
}

.cloud:before {
  left: 80%;
  width: 60%;
  height: 60%;
  border-left: none;
  border-radius: 50% 50% 50% 0;
}

.cloud:after {
  right: 80%;
  width: 80%;
  height: 80%;
  border-right: none;
  border-radius: 50% 50% 0;
}

.anim-block {
  overflow: hidden;
  position: relative;
  display: block;
  width: 75%;
  height: 80%;
  margin: 0.5em auto;
  padding: 0 0 0 16px;
}

.anim-block:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 10;
}

.anim-block:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 10;
}

.arrow-container {
  position: absolute;
  top: 0;
  /* left: 20px; */
  width: 40px;
  height: 40px;
  right: 10px;
}

[class*="icono"] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #dcdcdc;
  box-sizing: border-box;
}

[class*="icono"]:after,
[class*="icono"]:before {
  content: "";
  box-sizing: border-box;
}

[class*="icono-arrow1"] {
  width: 26px;
  height: 26px;
  border-width: 6px 6px 0 0;
  border-style: solid;
  margin: -16px 0 0 7px;
}

[class*="icono-arrow1"]:before {
  right: 0;
  top: -6px;
  position: absolute;
  height: 8px;
  box-shadow: inset 0 0 0 32px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 28px;
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

[class*="icono-arrow1"][class*="-left"] {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

[class*="icono-arrow1"][class*="-left"][class*="-up"] {
  -webkit-transform: none;
  transform: none;
}

[class*="icono-arrow1"][class*="-left"][class*="-down"] {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

[class*="icono-arrow1"][class*="-right"] {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

[class*="icono-arrow1"][class*="-right"][class*="-up"] {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

[class*="icono-arrow1"][class*="-right"][class*="-down"] {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

[class*="icono-arrow1"][class*="-up"] {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

[class*="icono-arrow1"][class*="-down"] {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.cloud-play {
  animation: cloudAnim 1.8s linear infinite forwards;
}

@keyframes cloudAnim {
  0% {
    transform: translateY(250%) scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: translateY(-100%) scale(1, 1);
  }
}


.drop-png{
  width: 25%;
  margin: auto;
}

.arrow-png {
opacity: 0.85;
}


.arrow-png#top-left {
  z-index: 100;
  background: transparent;
  width: 30px;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 3px;
}



.arrow-png#top-right {
  z-index: 100;
  background: transparent;
  width: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 3px;
  
}

.arrow-png#bottom-left {
  z-index: 100;
  background: transparent;
  width: 30px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 3px;
}

.arrow-png#bottom-right {
  z-index: 100;
  background: transparent;
  width: 30px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 3px;
}



.mirrored {
  transform: scaleX(-1);
  background-color: #000000;
}

#top-right.mirrored {
  transform: scaleX(-1);
  background-color: #000000;
}


.book-item {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
  transform: scale(1);
  display: flex;
  justify-content: center;
}

.fade-out {
  opacity: 0;
  transform: scale(0.95); /* Slightly shrink for visual effect */
}

#local-storage-retrieveal-button{
  position: relative; 
  /* top: 246px; */
  
  color: rgb(0, 0, 0);
  border-radius: 6px;
  box-sizing: border-box;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  opacity: 0.72;
  box-shadow: 5px 5px 0px rgb(47, 19, 255);
  border: 1px solid black;
  transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Include transform in the transition */
  display: inline-block; /* or display: block; */
  opacity: 0.9;
  bottom: -12px;
  background-color: #fff;
  font-weight: bold;
}
/* strong is adjusted to be closer to the text */
strong {
  margin-right: 4px; /* Adjust as necessary */
}

#main-container{
  font-family: "Futura", sans-serif;
}


#display-dropped-photos{
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  margin-top: 40px;
}

.image-dropped-in-url{
  object-fit: cover;
  overflow: hidden;
  height: 160px;
  width: 160px;
  /* opacity: 0; Start with opacity 0 */
  border: dotted 5px black;
  justify-content: left;
  margin-top: 20px;
  /* transition: opacity 0.5s ease-out; */
  margin-bottom: -20px;
}

#magnifyingglass-png{
  border-radius: 5px;
  /* padding-top: 10px; */
}

#sendEmailButton{

}

#sendEmailButton:hover {
  box-shadow: 0px 0px 0px rgb(171, 62, 62);
  border-color: transparent;
  transform:  translateX(3px) translateY(4px);
}

#popupForm{

width: 40%;
display: flex;
position: relative;
box-shadow: 5px 5px 0px #9a8ef8;
border: 1px solid black;
width: 80%;
margin: 0 auto;
margin-top: 20px;
height: 0px;
overflow: hidden;
transition: height .5s ease-in-out;

opacity: 0;
}

#popupForm.expanded{
  height: 500px;
  opacity: 1;
}

#openFormBtn{
  position: relative; 
  /* top: 246px; */
  
  color: rgb(0, 0, 0);
  border-radius: 6px;
  box-sizing: border-box;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  opacity: 0.72;
  box-shadow: 5px 5px 0px #9a8ef8;
  border: 1px solid black;
  transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Include transform in the transition */
 
  opacity: 0.9;
  bottom: -12px;
  font-family: "Futura", sans-serif;
  font-size: 16px;
  width: 80%;
  display: flex;
  justify-content: center;
  background-color: white;
}
#openFormBtn:hover{
box-shadow: 0px 0px 0px rgb(171, 62, 62);
border-color: transparent;
transform:  translateX(3px) translateY(4px);
}
.modal-content{
  display: flex;  
  padding: 30px;
}



.close-btn-email{

  justify-content: right;


  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  border: .33px solid black;
  border-radius: 4px;
  background-color: transparent;
  color: black;
  transition: font-size 0.3s ease

}
.close-btn-email:hover{
  background-color: #707070;
  border-color: transparent;
  /* transform:  translateX(3px) translateY(4px); */
  font-size: 25px;
}

#imageMessage{
   padding: 10px;
}

#paddingLeft5px{
  padding-left: 5px;
}

textarea {
  width: 100%; /* Ensures the textarea expands fully within the container */
  max-width: 100%; /* Prevents it from exceeding the container */
  height: 100px; /* A reasonable height for input */
  box-sizing: border-box; /* Ensures padding doesn't exceed total width */
  resize: vertical; /* Allows vertical resizing only */
  overflow: auto; /* Adds scrolling if content exceeds the height */
}
input{
  width: 100%; /* Ensures the textarea expands fully within the container */
  max-width: 100%; /* Prevents it from exceeding the container */

}

#button-to-add-up-CIB-value{
  margin: 10px;
}

.add-up-cost-button{
  font-size: smaller;
  text-decoration: none;
  color: #292828;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgb(15, 15, 15);
  border: 1px solid black;
  transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: inline-block;
  opacity: 0.9;
  margin: 10px;
}

/* General styles for video game display */
.video-game-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  text-align: center; /* Center-align title by default */
  position: relative;
  bottom: 15px;
}

.video-game-info {
  font-size: 1rem;
  color: #555;
 
  text-align: left; /* Left-align all info by default */
}

.video-game-info strong {
  font-weight: bold;
  color: #222;
}

/* Mobile-specific styling */
@media (max-width: 768px) {
  
.video-game-title{
  position: relative;
    bottom: 0px;
  }
}

  .video-game-info {
    text-align: left !important; 
    font-size: 1rem;
    color: #555;
    margin: 4px 0;
    text-align: left; /* Left-align all info by default */
  }

  #refresh-spinner {
    display: none;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    border: 4px solid #ccc;
    border-top-color: #0b0b0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
  }

  @keyframes tvClose {
    0% {
      height: 200px;
      transform: scaleY(1);
      opacity: 1;
    }
    80% {
      height: 10px;
      transform: scaleY(0.1);
      opacity: 1;
    }
    100% {
      height: 0;
      transform: scaleY(0);
      opacity: 0;
    }
  }
  
  /* The class to trigger the TV closing animation */
  .tv-close {
    animation: tvClose 1s ease-out forwards;
  }
  

  
  .form-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the modal */
    background-color: white;
    padding: 20px;
    z-index: 1000; /* Above the overlay */
    color: black;
    font-family: "Futura", sans-serif;
    border-radius: 6px;
    display: flex;
    flex-direction: column; /* Align content vertically */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    width: 300px;
    height: 200px;
   
  }

  #forgotEmail{
    width: 80%;
  }

  #currencySelector{
    display: none;
  }

  


  #div-for-currency-button {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: "Futura", sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 5px 5px 0px rgb(224, 125, 251);
    border: 1px solid black;
    transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease;
    display: inline-block;
    width: 45px;
    height: 10px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }
  
  #div-for-currency-button:hover {
    box-shadow: 0px 0px 0px rgb(224, 125, 251);
    border-color: transparent;
    transform:  translateX(3px) translateY(4px);
  }
  .no-wrap {
    white-space: nowrap;
  }

  #download-button a {
    
    font-size: 24px;
    text-decoration: none;
    color: #292828;
    font-weight: bold;
    padding: 22px 12px;
    border-radius: 4px;
    box-shadow: 5px 5px 0px rgb(153, 248, 255);
    border: 1px solid black;
    transition: border-color 0.1sease, box-shadow 0.3sease, transform 0.3sease;
    display: inline-block;
    opacity: 0.9;
    margin: 40px;
    margin-bottom: 50px;
    width: 79%;
    /* overflow: hidden; */
   
}

#download-button a:hover {
    background-color: #005ecb; /* Darker blue on hover */
}

#div-for-download-button{
 display: flex;
 justify-content: center;
 align-items: center;
 width:90%;
 overflow: hidden;
}
