.expense-form{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    flex-wrap: wrap;
  }
  .expense-form > * {
    margin: 5px;
  }

  .expense-form > input:first-child{
    margin-left: -10px;
}

.expense-dash{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
  }
  .expense-dash div{
    width: 270px;
    height: 70px;
    border-radius: 5px;
    background: white;
    position: relative;
    display: flex;
    margin-right: 20px;
    align-items: center;
    font-size: 16px;
  }
  .expense-dash div:first-child{
    margin-right: 20px;
  }
  .expense-dash div span{
    left: 0;
    height: 70px;
    width: 70px;
    border-radius: 5px;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }
  .expense-dash div a{
    margin: 20px 0 0 5px;
    font-size: 16px;
    text-decoration: none;
  }
  .expense-dash div i{
    margin: 20px 2.5px 0 5px
  }
  .expense-dash div span i{
    font-size: 25px;
    color: white;
    margin: 0;
  }
  .expense-dash div p{
    position: absolute;
    top: 12.5px;
    left: 82.5px;
    font-size: 14px;
    opacity: 0.9;
  }
  .expense-dash div .ex-total-badge{
    background-image: linear-gradient(to right top, #0de0fb, #00c8ff, #00adff, #008dff, #1865ff);
  }
  .expense-dash div .ex-expense-badge{
    background-image: linear-gradient(to right top, #fbbf0d, #fab303, #f9a600, #f79a00, #f58d02);
  }
  .expense-dash div .ex-income-badge{
    background-image: linear-gradient(to right top, #00ff1b, #08eb15, #0dd80e, #0fc508, #0fb203);
  }

  #expense-list-table{
    width: 100% !important;
  }
  #expense-list-table tr:first-of-type td:first-child{
    padding-right: 15px !important;
  }
  #expense-list-table tr td:last-child{
    padding-right: 0px !important;
    top: 0;
    vertical-align: text-top;
  }
  #expense-list-table tr td > span > p{
    text-align: left;
  }
  #expense-list-table tr td > span > table tbody tr td{
    width: 350px;
    border-bottom: 4px solid rgba(265, 265, 265);
  }

  #myInput{
    position: relative;
    text-indent: 0px;
  }

  .ex_dashboard{
    display: inline-block;
    max-width: 70%;
    border-top: none;
    background: transparent;
    padding: 0;
    padding-top: 5px;
  }