/* Tooltip Container */
.pac-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  border-bottom: 1px dotted #cccccc; /* Soft grey visual cue */
  padding-bottom: 2px;               /* Adds a pixel or two of breathing room */
}

/* Tooltip Text (Hidden by default) */
.pac-tooltip .pac-tooltip-text {
  visibility: hidden;
  width: 220px;
  background-color: #2c3e50; /* Clean dark slate background */
  color: #ffffff;
  text-align: left;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  
  /* Positioning right above the text */
  position: absolute;
  z-index: 999;
  bottom: 130%; 
  left: 50%;
  transform: translateX(-50%);
  
  /* Smooth transition fade */
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

/* Tooltip Arrow */
.pac-tooltip .pac-tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip bubble */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2c3e50 transparent transparent transparent;
}

/* Show on Hover */
.pac-tooltip:hover .pac-tooltip-text {
  visibility: visible;
  opacity: 1;
}


.instruction-card {
  background-color: #f8f9fa; /* Light background fill */
  border: 1px solid #e2e8f0; /* Subtle border */
  /*
  border-left: 4px solid #b89768;
  border-right: 4px solid #b89768;
  */
  max-width:610px;  
  border-radius: 8px;           /* Rounded corners */
  padding: 25px 30px;           /* Comfortable inner spacing */
  margin: 0px 0 40px 10;        /* Space above and below the panel */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14); /* Soft shadow */
}

.instruction-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2d3748;
  text-transform: uppercase;
}

.instruction-card p {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6; /* Improved readability */
}