body {
    font-family: Arial, sans-serif;
    margin: 0;
  }
  
  h1, h2 {
    text-align: center;
  }
  
  .input-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .input-section label {
    font-weight: bold;
    margin-right: 10px;
  }
  
  .input-section input[type="number"], .input-section input[type="date"], #category-select {
    padding: 5px;
    margin-right: 100px;
  }
  
  .input-section button {
    padding: 5px 10px;
    background-color: #4ca8af;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .expenses-list {
    margin: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;

  }
  
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    width: 33%;
  }
  
  th {
    background-color: #4ca8af;
    color: white;
  }
  
  tfoot td {
    font-weight: bold;
  }

  #remove {
    width: 5%;
  }
  
  .delete-btn {
    padding: 5px 10px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;

  }

#add-btn:hover, .delete-btn:hover {
  transition: 0.35s;
  transform: scale(1.1);
}

/* ----------------------SMALL SCREEN-------------------------*/

@media only screen and (max-width: 600px) {
  .input-section {
  display: flex;
  flex-direction: column;
  width:100%;
  }
  .input-section input[type="number"], .input-section input[type="date"], #category-select {
    margin: 10px 0;
  }
  #add-btn {
    margin-top: 10px;
    padding: 10px 15px;
  }
  td {
    font-size: 13px;
  }

}
