/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Form Container */
  #money-exchange-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
  }
  
  /* Labels */
  #money-exchange-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
  }
  
  /* Input Fields */
  #money-exchange-form input[type="number"],
  #money-exchange-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  /* Button */
  #money-exchange-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #money-exchange-form button:hover {
    background-color: #0056b3;
  }
  
  /* Result Section */
  #result {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
  }
  
  #result p {
    margin: 0.5rem 0;
  }
  
  /* Responsive Design */
  @media (max-width: 480px) {
    #money-exchange-form {
      padding: 1.5rem;
    }
  
    #money-exchange-form input[type="number"],
    #money-exchange-form select,
    #money-exchange-form button {
      padding: 0.5rem;
      font-size: 0.9rem;
    }
  }