body {
  margin: 0;
  padding: 0;
  font-family: "Lora", serif;
  background-color: white;
  color: #f0f0f0; /* Light text color */
   justify-content: center;
  align-items: center;
  }

.preloader {
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  background-color: rgba(0, 0, 0, 0.7); 
  color: #ffffff;
  padding: 15px 30px; 
  border-radius: 8px;
  display: none;
  z-index: 1000; 
}

#chartdiv {
  width: 100%;
  height: 500px;
  margin: 20px 0; /* Add some margin around the chart */
  /* background-color: #283106; */
  background-color: black;
  border: 2px solid black; /* Darker background for the chart */
  border-radius: 12px; /* Smooth corners */
}

.am5-layer-30 {
  display: none !important;
}

.tooltip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*background: #b1b6bc;*/
  background: white;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px 000011;
  position: absolute;
  z-index: 100;
  visibility: hidden;
  margin-top: -5%;
  width: 150px;
  color: black;
  border: 2px s;
}

.tooltip-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  border-radius: 50%; /* Circular shape */
  filter: grayscale(100%); /* Black-and-white effect */
  object-fit: cover; /* Avoid image distortion */
}

.tooltip-card h1 {
  font-size: 14px;
  margin: 0;
  font-weight: normal;
}

.tooltip-card a {
  color: #1e90ff;
  text-decoration: none;
  font-size: 12px;
  color: gray;
}

.tooltip-card a:hover {
  text-decoration: underline;
}

/* Quote styling for dark theme */
.quote-container {
  margin-top: 20px;
  padding: 20px;
  text-align: center;
  background-color: #e6e6e6; /* Darker background for the quote */
  color: black; /* Light text for contrast */
  font-family: "Lora", serif;
  font-size: 1.2rem;
  line-height: 1.6;
  box-shadow: 0 5px 10px rgba(111, 111, 111, 0.2);
  border-radius: 15px;
  border: 2px solid #c2c2c2; /* Border to match theme */
}





.profile-card {
  /* background-color: black;   */
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  margin: 20px 0;
}
.profile-image {
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(9, 9, 9, 0.6);
  height: 450px;
  width: 450px; 
  filter: grayscale(100%);
  
  
}
.profile-content {
  padding: 25px;
}
.profile-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 15px
}
.profile-story {
  font-size: 18px;
  color: #dcdcdc;
}
