.cat-container {
    display: flex;
    flex-direction: column;
}

.cat-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 8px;
    font-size: 1.1em;
}

.cat-title {
    font-weight: bold;
    text-align: left;
    font-size: 1.2em;
}

/* Reset some default browser styles */
form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  label {
    /* display: flex; */
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
    font-weight: bold;
    width: 120px;
    text-align: right;
  }
  
  textarea {
    display: inline-block;
    width: calc(100% - 130px);
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  select {
    display: inline-block;
    width: 400px; /*calc(100% - 130px);*/
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="number"] {
    display: inline-block;
    width: calc(100% - 130px);
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    color: #fff;
    background-color: #009fa8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #009fa8;
  }
  
  #cat-message-container {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    /* background-color: #f2f2ff; */
    border: 1px solid #ddd;

    width: 758px;
    border-radius: 4px;
  }

  #quantity {
    width: 60px;
  }


  #city {
    width: 300px;
  }

  #state {
    width: 60px;

  }
  
  #zip {
    width: 120px;
  }

  #state-label {
    width: 60px;
  }


  .success {
    background-color: green;
    transition: background-color 1.0s ease;
    color: white;
  }

  .error {
    background-color: red;
    transition: background-color 1.0s ease;
    color: white;
  }