.addingform {
    display: flex;
    justify-content: center;
  }
  .form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
  }
  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  .form-group {
    margin-bottom: 16px;
  }
  label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
  }
  input, select {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
  }
  input:focus, select:focus {
    border-color: #007bff;
    outline: none;
  }
  .error {
    color: rgb(160, 0, 0);
    font-size: 13px;
    margin-top: 4px;
  }
  .form-actions {
    text-align: right;
    margin-top: 20px;
  }
  .form-actions button {
    background: #49a1ff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
  }
  .form-actions button:hover {
    background: #0056b3;
  }