body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #ffe4e1;
  }
  
  .container {
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  
  h1 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
  }
  
  .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  button {
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #okButton {
    background-color: #ff6b6b;
    color: white;
  }
  
  #okButton:hover {
    background-color: #ff4b4b;
  }
  
  #noButton {
    background-color: #ddd;
    color: black;
    position: relative; /* Agar tombol dapat bergerak */
  }
  
  #noButton:hover {
    background-color: #ccc;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    button {
      font-size: 1rem;
      padding: 8px 16px;
    }
  }
  