body {
  font-family: 'Segoe UI', sans-serif;
}

html {
  position: relative;
  min-height: 100%;
}

html,
body {
  height: 100%;
  margin: 0;

}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 50px;
  background-color: #f5f5f5;

}

.footer>.container {
  padding-right: 15px;
  padding-left: 15px;
}

.container .footer-text {
  margin: 14px 0;
}

.main-container {
  height: 92vh;
  overflow: hidden;
}

.sidebar,
.content {
  height: 92vh;
  overflow-y: auto;
}

p {
  font-size: 1.1em !important;
}

.description {
  font-size: 1.1em !important;
}

.sidebar {
  background-color: #fdfdfd;
  border-right: 1px solid #e0e0e0;
}

.sidebar h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

#menu-container a {
  display: block;
  padding: 8px 10px;
  margin-bottom: 5px;
  text-decoration: none;
  border-radius: 4px;
  color: #0d3557;
  background-color: #d3d3d36b;
  font-weight: 700;
  transition: background 0.2s ease;
}

#menu-container a:hover {
  background-color: #e9f5ff;
  color: #23527c;
  text-decoration: none;
}

#menu-container a.active {
  background-color: #337ab7;
  color: #fff !important;
  font-weight: 600;
}

input.form-control {
  margin-bottom: 15px;
}

.nv {
  display: none;
}

#img {
  margin-bottom: 15px;
}

dl dt {
  font-size: 1.2em !important;
}

dl dd {
  font-size: 1.5em !important;
}


.slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  cursor: pointer;

  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  z-index: 2;
  border-radius: 4px;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.dot.active {
  background: white;
}

label sup {
  color: red;
}