
/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
  }
  
  .container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  input[type="file"] {
    margin-bottom: 20px;
  }
  
  button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #3e8e41;
  }
  
  /* Responsive Styles */
  
  @media (max-width: 768px) {
    .container {
      margin: 20px auto;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      margin: 10px auto;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
      height: 30px;
    }
    button[type="submit"] {
      padding: 5px 10px;
    }
  }
  
  /* Additional Styles */
  
  #summary-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-height: 80vh; /* add this line */
    overflow-y: auto; /* add this line */
  }
  
  
  #summary-popup img {
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 50px;
  }
  
  #summary-popup h4 {
    margin-bottom: 10px;
  }
  
  #summary-popup p {
    margin-bottom: 20px;
  }
  
  #summary-popup button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #summary-popup button:hover {
    background-color: #3e8e41;
  }
  