.full-height {
  height: 100vh;
}

.mainCont {
  background: #f1f1f1;
  height: 100vh;
  width: 100%;
  /* margin-top: 2vh;
  margin-bottom: 4vh; */
  padding: 50px 50px 0 20px;
  overflow: auto;
}
body {
  background-color: #f1f1f1;
  height: 100vh;
  /* overflow: hidden; */
}

/* Header styling */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 80px;
}

.logo img {
  width: 100%;
}

.menu a {
  color: black;
  margin: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.menu a:hover {
  color: #ff6600;
}

.profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.icon-buttons button {
  background-color: transparent;
  border: none;
  color: black;
  cursor: pointer;
  padding: 10px;
  background: white;
  border-radius: 50%;
  position: relative;
  margin: 5px;
  width: 50px; /* Fixed size for consistency */
  height: 50px; /* Fixed size for consistency */
  box-sizing: border-box;
}

.icon-buttons button .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  max-width: 16px;
  max-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
}

.icon-buttons button i {
  font-size: 20px;
}

.icon-buttons {
  display: flex;
  gap: 10px; /* Space between the buttons */
  align-items: center;
}

/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  /* Hidden by default */
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  z-index: 1000;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.nav-item .icon-container {
  color: black;
  transition: color 0.3s ease;
}

.nav-item .icon-container i {
  font-size: 20px;
}

/* Active Item */
.nav-item.active {
  background-color: #ffd66b;
  /* Your selected icon background color */
}

.nav-item.active .icon-container {
  color: white;
}

/* Hover Effect */
.nav-item:hover {
  background-color: #f0f0f0;
}

.nav-item:hover .icon-container {
  color: #333;
}

/* Notification Dropdown Scroll */
.dropdown-menu.notification-dropdown {
  max-height: 300px;
  overflow-y: auto;
  width: 300px;
}

.dropdown-menu .dropdown-header {
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.dropdown-item-text.small {
  font-size: 12px;
  padding: 10px 15px;
  color: gray;
  border-bottom: 1px solid #ddd;
}

.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.dropdown-item .rounded-circle {
  width: 40px;
  height: 40px;
}

.dropdown-item .fw-bold {
  font-weight: bold;
}

.dropdown-item .small {
  font-size: 12px;
  color: #777;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.dropdown-menu .view-more {
  padding: 10px 15px;
  text-align: center;
}

.dropdown-menu .btn-sm {
  font-size: 12px;
  padding: 5px 10px;
}

/* Mobile-Specific Styling */
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }
}

.profile-login {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

/* Carousel */
.carousel-inner {
  position: relative;
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-info {
  color: white;
  text-align: left;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-control-btn {
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.carousel-control-btn span {
  border-radius: 5px;
  display: inline-block;
}

.carouselImg {
  max-height: 450px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

.image-bulletin-board {
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

.card-bulletin-board {
  background: transparent !important;
}

.card-spotlight {
  border-radius: 20px;
  background-color: white;
  padding: 20px 25px !important;
}
