.expenses-subheader {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}

.expenses-subheader span {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 2.5rem;
  min-width: 300px;
}

@media (max-width: 1200px) {
  .hide-on-mobile {
    display: none;
  }
}

.unhide-on-mobile-menu {
  display: none;
}

.subnav {
  width: 100%;
}

@media (max-width: 990px) {
  .hide-on-mobile-menu {
    display: none;
  }
  .unhide-on-mobile-menu {
    display: block;
  }
  .subnav {
    width: auto;
  }
}

@media (max-width: 600px) {
  .hidden-td {
    display: none;
  }
  table {
    width: 90% !important;
  }
  th, td {
    font-size: .65rem;
  }
  .btn {
    padding: 2px;
  }
  .expenses-subheader {
    flex-wrap: wrap !important;
    gap: 0;
  }
}

.tab-navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.tab-navigation .btn {
  min-width: 100px;
}

#modalAddReminder .modal-dialog {
  max-width: 600px;
}

.selected-info {
  font-size: 0.7rem;
}

.selected-info ol, .selected-info ul {
  padding-left: 1rem;
}

.selected-info-big {
  font-size: 1rem;
}

.datepicker th.dow {
  background-color: #538FCD;
  color: #fff;
  border-radius: 0;
}

.datepicker table tr td, .datepicker table tr th {
  width: 35px;
  height: 35px;
  font-size: 0.9rem;
}