/* GENERAL FIXES */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
 /* background-color: #f8f9fa;*/
}

.text-overlay {
  position: absolute;
  bottom: 80px;
  left: 20px;
  font-size: 28px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  animation: fadeInUp 1.2s forwards;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SIDEBAR */
#wrapper {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
}

.sidebar-heading {
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  background-color: #f1f1f1;
  margin-bottom: 10px;
  border-radius: 5px;
}
.list-group-item {
  border: none;
  font-size: 14px;
  padding: 10px 15px;
  transition: background 0.3s;
}
.list-group-item:hover {
  background-color: #e2f3f5;
  color: #00786c;
}

/* SLIDER */
#slider1_container {
  max-width: 100%;
  height: auto;
  margin: auto;
/*  border-radius: 8px;*/
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* RESPONSIVE TABLE */
table.table {
  width: 100%;
  margin-top: 10px;
}
table th, table td {
  text-align: center;
  vertical-align: middle;
}
   .top{
    padding-top:10px;
    }