* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    height: 100vh;  /* Full height of the screen */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    text-align: center;
  }
  
  .vehicle-container {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .vehicle-image {
    width: 80%;
    max-width: 600px;
  }
  
  .interactive-area {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(246, 205, 0, 0.247);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0703fa;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
.interactive-area:hover {
  transform: scale(1.1);
}

/* Tooltip styles */
.interactive-area::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.interactive-area:hover::after {
  opacity: 1;
}
  
  .interactive-area:hover {
    transform: scale(1.1);
  }
  
  #Front-electrical-systems {
    top: 50%;
    left: 20%;
  }
  
  #Lines-and-fuse {
    top: 50%;
    left: 40%;
  }
 
  
  
  .inspection-result {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #0e4ed7;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 18px;
    color: #333;
  }
  