.filters-years {
  display: flex;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}

.filters-months {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: center;

  & button {
    width: 90px;
    background: transparent;
    font-size: .8rem;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    padding: 5px;

    .income {
      color: var(--green-sea);
    }

    .expense {
      color: var(--alizarin);
    }

    &:hover {
      background: var(--sun-flower);
    }
  
    &.active {
      background: var(--sun-flower);
    }
  }

}