body {
    margin: 0;
    height: 100vh;
    background: #ffe4e1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Comic Sans MS", cursive;
  }
  
  .container {
    text-align: center;
    padding: 30px;
  }
  
  h1 {
    color: #ff69b4;
    font-size: 2rem;
  }
  
  .buttons {
    margin-top: 30px;
  }
  
  button {
    font-size: 1.2rem;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
  }
  
  #yesBtn {
    background: #98fb98;
    color: white;
  }
  
  #noBtn {
    background: #ff6b6b;
    color: white;
  }
  
  .hidden {
    display: none;
  }
  
  .message {
    font-size: 1.2rem;
    color: #444;
  }
  
  .map {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #ff1493;
    text-decoration: none;
  }
  
  .map:hover {
    text-decoration: underline;
  }
  
  .extra {
    margin-top: 20px;
    font-style: italic;
    color: #666;
  }
  