body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0f25; /* Dark blue background */
    color: #fff; /* Light text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.1); /* Slight overlay on the container for readability */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.responsive-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px; /* Soften the image edges */
}

p {
    background-color: rgba(255, 255, 255, 0.2); /* Slight overlay on text for readability */
    border-radius: 5px;
    padding: 10px;
}

.tooltip {
  position: relative; /* Allows positioning of the tooltip */
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden; 
  background-color: #333; /* Tooltip background */
  color: #fff;          /* Tooltip text color */
  text-align: center;
  padding: 5px;
  border-radius: 4px;

  position: absolute;   /* Positioned relative to the tooltip */
  z-index: 1;           /* Ensures it's on top */
  bottom: 120%;         /* Place it below the icon */
  left: 50%;            /* Center it horizontally  */
  margin-left: -30px;   /* Offset for centering */

  /* Optional: Add a little arrow */
  /* Make sure to adjust "bottom" property above as needed */
  opacity: 0;           /* Hidden by default */
  transition: opacity 0.3s; /* Smooth fade-in */
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1; 
}

.tooltip i {
  font-size: 14px; /* Adjust the size as needed */
  color: #007bff;  /* A typical 'info' blue color */
  margin-left: 3px; /* Add a little space after the text */
}
