/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center fixed; /* Replace 'your-image.jpg' with the path to your image */
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  /* Header Styling */
  h1 {
    text-align: center;
    margin: 20px 0;
    color: #4caf50;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  /* Form Styling */
  form {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
  }
  
  input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  button {
    width: 100%;
    padding: 10px 15px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #45a049;
  }
  
  /* Dynamic Fields */
  #names_container label {
    margin-top: 10px;
  }
  
  #names_container input {
    margin-bottom: 10px;
  }
  
  /* Result Container */
  #result-container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #eef9f2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  
  #result-container ul {
    list-style-type: none;
    padding: 0;
  }
  
  #result-container li {
    background: #e6f7e8;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #b2e3b8;
    border-radius: 4px;
    color: #333;
    font-size: 1.1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    h1 {
      font-size: 2rem;
    }
  
    button {
      font-size: 1rem;
    }
  }
  