body {
  margin: 0 auto;
}
.navbar {
  height: 80px;
  border-bottom: 2px solid #555;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-container,
.profile-container {
  width: auto;
}
.logo-container h3 {
  display: inline-block;
  color: #555;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img {
  padding: 0 15px 0 15px;
}
.profile-container {
  padding-right: 15px;
}
.profile-container img {
  border-radius: 50%;
  width: 60px;
}
.navbar img {
  height: 60px;
}
.container {
  width: calc(100vw);
  height: calc(100vh - 82px);
  overflow: hidden;
}
.sidebar {
  width: 300px;
  border-right: 2px solid #555;
  height: 100%;
  padding: 15px;
}
.sidebar > nav {
  display: flex;
  flex-direction: column;
}
nav a {
  padding-bottom: 15px;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
}
.content,
.sidebar {
  float: left;
}
.content {
  height: 100%;
  width: calc(100% - 362px);
  padding: 15px;
  overflow-y: auto;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading h2 {
  display: inline-block;
  color: #555;
  margin: 0;
  text-transform: uppercase;
}
.link-btn {
  background-color: #3cb989;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 30px;
}

.table-container {
  overflow: auto;
}
table {
  width: 100%;
  margin-top: 15px;
}
table.list-table,
.list-table th,
.list-table td {
  border: 2px solid #555;
  border-collapse: collapse;
}
table.colored-table {
  border-collapse: collapse;
}
.colored-table tr {
  border-bottom: 2px solid #555 !important;
}
th {
  text-transform: uppercase;
  text-align: left;
}
th:first-child,
td:first-child {
  text-align: center;
  width: 50px;
}
td,
th {
  padding: 15px;
}
caption {
  padding-bottom: 15px;
  font-size: 24px;
  text-decoration: underline;
}
.list-table th:first-child,
.list-table td:first-child {
  width: auto;
}
.colored-table tr:nth-child(odd) {
  background-color: greenyellow;
}
.list-table tr:hover {
  background-color: #3cb989;
  cursor: pointer;
}
.flex {
  display: flex;
  align-items: center;
}
nav img,
nav i {
  height: 25px;
  margin-right: 15px;
}
nav i {
  vertical-align: middle;
  line-height: 27px !important;
  color: #1abcfe;
}
.form-container {
  margin-top: 15px;
}
.form-container label {
  display: block;
  margin-bottom: 10px;
}
.red-text {
  color: red;
}
textarea,
input,
input:focus,
input:active,
input:focus-visible {
  border: 2px solid #ccc;
  outline: none;
  padding: 5px;
  height: 25px;
  color: #555;
  width: 80%;
}
input:active,
input:focus,
input:focus-visible {
  border-color: #a259ff;
}
select {
  border: 2px solid #ccc;
  outline: none;
  height: 39px;
  width: 82%;
  color: #555;
}
.row-container {
  margin-bottom: 15px;
  height: auto;
  overflow: hidden;
}
.input-container {
  width: 50%;
  float: left;
}
.wrapper {
  display: flex !important;
  align-items: center;
  margin-bottom: 0;
  width: 15%;
  float: left;
  height: 35px;
  color: #555;
}
.check-wrapper {
  width: auto;
  margin-right: 15px;
}
.wrapper input {
  width: auto;
}
textarea {
  height: auto;
}
input[type="submit"],
input[type="reset"] {
  width: auto;
  border: none;
  padding: 15px 30px;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  height: auto;
}
.right {
  text-align: right;
  padding-right: 10%;
}
input[type="submit"] {
  background-color: #3cb989;
}
input[type="reset"] {
  background-color: #ff7262;
}
@media only screen and (max-width: 767px) {
  .sidebar {
    display: none;
  }
  .content {
    width: calc(100% - 30px);
    overflow-x: auto;
  }
}
