* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    outline: none;
  }
  
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: rgba(59, 130, 246, .5);
  }

  .title-despesas{
    width: 100%;
    align-items: center;
    text-align: center;
    background-color: #2bc7d4;
    color: white;
    border-radius: 10px 10px 0 0;
  }

  h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    border-bottom: 2px inset #2bc7d4;

  }
  
  .principal {
    border-radius: 10px;
    background-color: rgb(251, 252, 253);
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
  }
  
  .entrada-saida {
    display: flex;
    padding: 10px 0;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .entrada-saida > div {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 5px #2bc7d4;
    border-radius: 10px;
    padding: 10px;
    width: 45%;
  }

  .value-total {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 5px #2bc7d4;
    border-radius: 10px;
    padding: 10px;
    width: 94%;
    align-items: center;
  }

  .total{
    font-size: 18px;
  }
  
  .newItem {
    display: flex;
    gap: 10px;
    align-items: end;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .divDesc {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    width: 94%;
    font-weight: 300;
  }
  
 .divType, .divAmount {
    padding-top: 5px;
    font-weight: 300;
    width: 46%;
    display: flex;
    flex-direction: column;
  }
  
   #btnNew {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #2bc7d4;
    cursor: pointer;
    border-radius: 12px;
    border: none;
    color: #fff;
    padding: 8px 20px;
    width: 94%;
    transition: background-color .2s ease;
  }

  #btnNew:hover{
    background-color: #36a8b3;
  }
  
  input, select {
    padding: 5px;
    border: 1px solid #2bc7d4;
    border-radius: 5px;
  }
  
  .divTable {
    padding-top: 10px;
    width: 94%;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  table {
    width: 98%;
    padding: 20px 0;
    border-radius: 5px;
  }
  
  th {
    text-align: start;
    border-bottom: inset;
    padding-bottom: 5px;
  }
  
  i {
    font-size: 25px;
  }
  
  .bxs-chevron-up-circle {
    color: #00C9A7;
  }
  
  .bxs-chevron-down-circle {
    color: rgb(148, 38, 38);
  }

  .bx-trash {
    cursor: pointer;
    color: rgb(148, 38, 38);
  }

  .bx-trash:hover{
    color: red;
  }
  
  .columnAction {
    width: 40px;
    text-align: center;
  }
  
  .columnAction > button {
    background: transparent;
    border: none;
  }
  
  .columnAmount {
    width: 30%;
  }
  
  .columnType {
    width: 80px;
    text-align: center;
  }