/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
  }
  
  .container {
    background-color: #fff;
    width: 400px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
  }
  
  h1 {
    font-size: 22px;
    color: #222;
    margin-bottom: 30px;
    margin-top: 60px;
  }
  
  .input-group {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: left;
  }
  
  label {
    font-size: 16px;
    color: #555;
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="number"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border 0.3s;
  }
  
  input[type="number"]:focus {
    border: 1px solid #6C5BFF;
  }
  
  .button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background-color: #6C5BFF;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  .button:hover {
    background-color: #4a3cfa;
  }
  
  /* Dropdown Styles */
  .dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
    margin-bottom: 40px;
  }
  
  .dropbtn {
    background-color: #a19ec2;
    color: white;
    font-size: 12px;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dropbtn:hover {
    background-color: #4a3cfa;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1;
    min-width: 160px;
  }
  
  .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
  }
  
  .dropdown-content a:hover {
    background-color: #f0f0f0;
  }
  
  /* Show the dropdown menu when hovering over the button */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  