.ip-header {
  background: #c6d8d6;
  display: grid;
  grid-template-areas:
    "bar bar"
    "inner inner"
    "nav nav";
}

.ip-bar {
  background: #007770;
  height: 2em;
  grid-area: bar;
}

.ip-header-inner {
  max-width: 1020px;
  width: 100%;
  margin: 1em auto;
  display: grid;
  grid-area: inner;
  grid-template-areas: "logo user";
}

.ip-header-logo {
  justify-self: start;
}

.ip-header-logo img {
  height: 70px;
}

.ip-header-user {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-nav {
  grid-area: nav;
  background: #007770;
}

.ip-menu {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  justify-content: start;
}

.ip-menu ul {
  display: flex;
  padding-inline-start: 0;
  align-items: center;
  margin: 0.5em 0;
}

.ip-menu li {
  display: flex;
  align-items: center;
}

.ip-menu a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 0.5em;
  font-weight: 500;
}

.ip-menu li:not(:last-child)::after {
  content: "|";
  color: white;
  margin: 0 0.5em;
}

.ip-menu a:hover {
  background-color: #ffffff;
  color: #007770;
}

.ip-header-user li {
  display: flex;
  align-items: center;
  background-color: #007770;
}

.ip-header-user li a {
  padding: 0.5em;
  color: #ffffff;
  text-decoration: none;
}

.username .caret {
  display: inline-block;
  padding: 0.5em;
  font-weight: bold;
  font-size: 17px;
}

.dropdown-menu a:hover {
  background-color: #ffffff;
  color: #007770;
}

.ip-list-row:hover {
  background-color: #007770;
  color: #ffffff;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background-color: #e2f1f0;
}
.table-striped>tbody>tr:nth-of-type(odd):hover {
  background-color: #007770;
}

.ip-list-row a {
  text-decoration: none;
  color: unset;
}

@media screen and (max-width: 1024px) {
  .ip-header-inner {
    margin: 1em;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .ip-menu {
    margin: 0 1em;
  }

  .ip-header-logo img {
    height: 40px;
  }

  .ip-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .ip-menu li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .ip-menu li:not(:last-child)::after {
    content: none;
  }
}
table.ip-availability-table {
  width: 100%;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0 10px;
}
table.ip-availability-table td, table.ip-availability-table th {
  padding: 0 1em;
}
table.ip-availability-table tr {
  padding-top: 10px;
}
table.ip-availability-table thead {
  background: #007770;
  border-bottom: 2px solid #444444;
}
table.ip-availability-table thead th {
  font-weight: bold;
  color: #FFFFFF;
  text-align: left;
  padding: 10px;
}
table.ip-availability-table tfoot .links {
  text-align: right;
}

/*.btn-group .calendar-button {
  color: inherit !important;
}*/

.btn-group .calendar-button {
  color: #007770 !important;
  border-color: #007770 !important;
  background-color: transparent !important;
}

.btn-group .calendar-button:hover, .btn-group .calendar-button:active, .btn-group .calendar-button.active, .btn-group .calendar-button:focus, .btn-group .calendar-button.focus {
  color: #FFFFFF !important;
  background-color: #007770 !important;
  border-color: #007770 !important;
}


/* .view-grid .dropdown.action>.btn {
  display: none;
}

.view-grid .dropdown.action .dropdown-menu {
  display: block;
  position: static !important;
  position: initial !important;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  max-width: 95px;
  min-width: 95px;
  width: 95px;
  left: auto !important;
  top: auto !important;
}

.view-grid .dropdown.action .dropdown-menu li {
  display: inline-block;
  text-align: center;
}

.view-grid .dropdown.action .dropdown-menu li a {
  font-size: 0;
  padding: 2px;
  margin: 0;
}

.view-grid .dropdown.action .dropdown-menu li a>span {
  font-size: 18px;
}

.view-grid .dropdown.action .dropdown-menu li a:hover {
  color: #008C95;
  background: transparent;
} */