/* Admin index styles */
body {
  background: #eee;
}

#side-nav {
  background-color: #000;
  min-width: 250px;
  max-width: 250px;
  transition: all 0.2s;
}

a {
  text-decoration: none;
}

.content {
  min-height: 100vh;
  width: 100%;
}

.sidebar li.active {
  background: #eee;
  border-radius: 8px;
}

#myTable td, #myTable th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}



.tableLines td, .tableLines th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.sidebar li.active a, .sidebar li.active a:hover {
  color: #000;
}

.sidebar li a {
  color: #fff;
}

.hr {
  color: #eee;
  margin: 1vmin;
}

.collapse-item:hover {
  background: gray !important;
}

@media(max-width: 767px) {
  #side-nav {
    margin-left: -250px;
    position: absolute;
    min-height: 100vh;
    z-index: 1;
  }

  #side-nav.active {
    margin-left: 0;
  }
}

/* Admin add, view, edit styles */
.button {
  background-color: #4c71de;
  color: white;
  margin-bottom: 1vmin;
}

.error {
  font-size: 14px;
  width: 100%;
}

.message.error, .error-message {
  color: red;
  border: 2px red solid;
  border-radius: 10px;
  background-color: salmon;
  width: 50%;
  margin-top: 15px;
  padding: 8px;

}

.logo-img {
  max-width: 900px; /* Adjust the size as needed */
  height: auto;
}