body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  
  background-image: url("./assets/desert_expanded.png");
  background-color: #fce1c9; 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  min-height: 100vh;
  overflow-x: hidden; 
}

svg { 
  /* width: 800px;
  height: 600px;*/
  flex-shrink: 0;
  background: linear-gradient(
      to bottom,
      #fde2e4 0%,   
      #fadadd 35%,  
      #fce1c9 65%,  
      #fff1c1 100%); 
  border-radius: 15px;  
  box-shadow: 0 8px 25px rgba(247, 244, 244, 0.958);  
} 

.page-wrapper{
  width: 90%;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  margin-top: 15px;
  align-items: center;
  gap:20px;
}

.main-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.panels{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  height: 100px;
  margin-top: 25px;;
}
.panel{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  height: 80px;
  background: linear-gradient(145deg, #fff5f5 0%, #ffe8ed 50%, #ffd9e0 100%);
  padding:5px;
  border-radius: 10px;
  border:2px solid rgb(232, 217, 236);
  box-shadow: 0 8px 20px rgb(249, 246, 246);
  font-size: 12px;
}

.panel h3 {
  margin: 12px 0 12px 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c97b8a;
  text-align: center;
}

.area-attributes b {
  font-size: 13px;
  font-weight: 600;
  color: #b57788;
}

.area-attributes span {
  font-size: 20px;
  font-weight: 800;
  color: #d97a91;
}

#buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

#buttons button {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: 41px;
}

.reset {
  background: linear-gradient(135deg, #ffd9e0 0%, #ffb3c1 100%);
  color: #8b4a5a;
}

.reset:hover {
  box-shadow: 0 6px 16px rgba(194, 133, 144, 0.4);
  background: #dabbc3;

}

.pause {
  background: linear-gradient(135deg, #ffe8cc 0%, #ffd9b3 100%);
  color: #8b6a3a;
}

.pause:hover {
  box-shadow: 0 6px 16px rgba(255, 217, 179, 0.4);
  background: #b2a896;

}

.continue {
  background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%) !important;
  color: #2d5a27 !important;
}


#logs {
  margin: 24px auto;
  margin-top: 100px;
  background: linear-gradient(145deg, #fff5f5 0%, #ffe8ed 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 182, 193, 0.6);
  padding: 14px;
  height: 440px;
  width: 550px;
  overflow-y: auto;
}

#logs p {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 15px;
  color: #774a76;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #e84393c6;
}

#logs p:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


@media (max-width: 1445px) {

  .page-wrapper {
    flex-direction: column;   /* When the width of the page decreases(mobile) */
    align-items: center;
  }

  #logs {
    margin-top: 40px;        
    width: 90%;               
    max-width: 700px;
  }
}

