:root {
    /* Theme color overrides */
    --bg: #f6f6fb;
    --card: #ffffff;
    --text: #2c3440;
    --muted: #6b7380;
    --accent: #1f7a8c;
    --accent-dark: #176070;
    --border: #e6e8ef;
    --shadow: 0 18px 40px rgba(26, 39, 72, 0.12);
    
    /* KIT-specific colors */
    --main-color: rgba(0,150,130, 1);
    --sub-color: rgba(0,150,130, 0.1);
    --sub-highlight-color: rgba(100, 100, 100, 0.15);
    --sub-text-color: rgba(20, 95, 90, 1);

}


/* Theme-specific header logo and title styles */
.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    transition: opacity 0.2s ease;
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo-image {
    height: 60px;
    width: auto;
    padding: 0;
}

.header__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}


.top-row {
  position: relative;
  z-index: 4;
  height: 25px;
}

.layout-row {
  display: flex;
  flex-direction: row;
}

.top-links {
  float: right;
  text-align: right;
  font-size: 0.9091em;
  line-height: 2.5455em;
  padding-right: 19px;
}

h2 {
  display: inline-block;
  border-bottom: 2px solid rgba(0,150,130, 1);
  width: 50%;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}


table.provider-table {
  border-collapse: collapse;
  background-color: #f4f4f4;
  float: left;
  margin-right: 20px;
}

table.provider-table th,
table.provider-table td {
  padding: 10px 20px;
  text-align: left;
}

table.provider-table th {
  background-color: #f4f4f4;
  width: 200px;
}

table.provider-table td {
  background-color: #fff;
}

table.provider-table th:first-child {
  border-top-left-radius: 5px;
}

table.provider-table th:last-child {
  border-top-right-radius: 5px;
}
body {
  font-family: Verdana;
}

