﻿body {
  background-color: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6px;
  background-color: #00d6a3;
  border-bottom: 1px #d7d7d7 solid;
}
header img {
  height: 30px;
}
header h1 {
  font-size: 24px;
  color: #fff;
}

.body-container {
  box-sizing: border-box;
  padding: 0 10px;
  margin: 20px 0;
}
.body-container .title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.body-container .title-container select {
  padding: 4px 30px 4px 10px;
  font-size: 12px;
}

.button-block button {
  margin-right: 6px;
}
.button-block button:last-of-type {
  margin-right: 0;
}

.site-button {
  border: 1px #29303e solid;
  background-color: #00d6a3;
  color: #fff;
  padding: 6px 14px 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
}
.site-button i {
  margin-right: 6px;
}
.site-button:hover {
  background-color: #29303e;
  color: #fff;
}
.site-button:disabled {
  background-color: #d7d7d7;
  border-color: #d7d7d7;
  color: #666;
}
.site-button.small {
  font-size: 12px;
  padding: 3px 10px;
}

.modal-content .modal-header {
  background-color: #29303e;
  color: #00d6a3;
}

textarea.form-control {
  font-size: 12px;
  height: 75px;
  resize: none;
}

.form-control:focus {
  border-color: rgba(0, 214, 163, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(0, 214, 163, 0.2);
}

.views-table td {
  font-size: 12px;
}
.views-table th {
  font-size: 14px;
}

.panel-views-wrapper {
  margin-top: 20px;
}
.panel-views-wrapper h3 {
  font-size: 16px;
}

.nav-tabs {
  background-color: #e7e7e7;
}
.nav-tabs .nav-item a {
  background-color: #29303e;
  color: #fff;
}
.nav-tabs .nav-item a.active {
  background-color: #00d6a3;
  color: #fff;
}
