.nav-link {
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  background-color: black !important;
}

 body {
  overflow-x: hidden;
}

a{
  color: red
}

/* Toggle Styles */

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 250px;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}

/* Sidebar Styles */

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav div a {
  text-decoration: none;
  font-size: 20px;
}

.sidebar-nav li {
  text-indent: 20px;
  line-height: 40px;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #999999;
  background-color: rgba(94, 94, 94, 0.2);
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  color: black;
  background-color: rgba(255, 255, 255, 1);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

.sidebar-nav .active a {
  text-decoration: none;
  color: black;
  background-color: rgb(146, 0, 0);
  color: white;
}

.sidebar-nav > .sidebar-brand {
  height: 65px;
  font-size: 18px;
  line-height: 60px;
}

.sidebar-nav > .sidebar-brand a {
  color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

.submit-btn {
  display: block;
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(255, 0, 0);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  width: 100%;
  border: none;
}

.submit-btn:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}

.submit-btn:disabled {
  display: block;
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(255, 198, 198);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  width: 100%;
  border: none;
}

.load-btn {
  display: block;
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(0, 131, 31);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  width: 100%;
  border: none;
}

.load-btn:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}

@media(min-width:768px) {
  #wrapper {
      padding-left: 250px;
  }

  #wrapper.toggled {
      padding-left: 0;
  }

  #sidebar-wrapper {
      width: 250px;
  }

  #wrapper.toggled #sidebar-wrapper {
      width: 0;
  }

  #page-content-wrapper {
      padding: 20px;
      position: relative;
  }

  #wrapper.toggled #page-content-wrapper {
      position: relative;
      margin-right: 0;
  }
}

.dashboard-item {
  background: rgba(0, 0, 0, 0.632);
  margin-top: 10px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 20px;
  border-radius: 20px;
  font-size: 25px;
  color: rgb(194, 194, 194);
  font-weight: bold;
  border: 2px solid rgb(85, 0, 0);
  text-align: center;
  padding-right: 30px;
}

.dashboard-item:hover {
  background-color: #05050538;
  color: white;
  border: 2px solid white;
}

.searchresult {
  border-style: solid; 
  border-color: gray; 
  font-size: 12px;
  border-width: 0.5px; 
  border-radius: 15px; 
  padding: 20px; 
  width: 300px;
  margin-bottom: 2px;
  -webkit-box-shadow: 5px 5px 39px 5px rgba(0,0,0,0.21); 
  box-shadow: 5px 5px 39px 5px rgba(0,0,0,0.21);
}

.searchresult:hover {
  border-color: black;
  border-width: 2px; 
  color: 'green';
  cursor: pointer;
}

textarea.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(255, 0, 0, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 0, 0, 0.6);
  outline: 0 none;
}