
  .hidden {
    display: none;
  }
  img{
    height: 40px;
  }
.title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-right: 50px;
}
.main{
    background-color: #9A7B4D;
    width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    align-items: center;
    justify-content: center;

}
  body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f9;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      color: white;
  }
  
  button {
    width: 150px;
    height: 40px;
    background-color: #7B481C;
    color: white;
      cursor: pointer;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      transition: background-color 0.3s;
      display: inline;
      margin-top: 20px;
  }
  
  #formContainer {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
      padding: 20px;
      border: 1px solid #ccc;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      width: 300px;
      box-sizing: border-box;
  }
  
  .form-container {
      display: none;
  }
  
  .form {
      display: flex;
      flex-direction: column;
  }
  
  label {
      margin-bottom: 5px;
      font-weight: bold;
  }
  
  input[type="text"],
  input[type="number"],
  select {
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
      width: 100%;
      box-sizing: border-box;
  }
  
  h2 {
      margin-bottom: 20px;
      font-size: 20px;
      text-align: center;
  }
  .listContainer {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}

.list-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
}

ul,form{
    color: #333;
}
.styled-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.styled-list li:last-child {
    border-bottom: none;
}

