body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f1f8f6; 
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    max-width: 600px; 
    width: 80%; 
  }
  
  h1 {
    margin-bottom: 20px;
    font-size: 24px; 
  }
  
  .option-input {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .option-input input {
    flex: 1; 
    padding: 8px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 14px;
  }
  
  .button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .button-container button {
    flex: 1;
    margin-right: 10px; 
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: #4caf50; /* Yeşil renk */
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  .spin-result {
    margin-top: 20px;
    font-size: 20px; 
    font-weight: bold;
    text-align: center;
    display: none; 
  }