.quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.quote .container {
  position: relative;
  z-index: 2; /* Bring content above overlay */
}

.quote #quote-title,
.quote #quote-content,
.quote #quote-author {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.main {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
}

#sidebar {
  max-width: 264px;
  min-width: 264px;
  transition: all 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
}

#sidebar.collapsed {
  margin-left: -264px;
}

.toggler-btn {
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.navbar {
  padding: 1.15rem 1.5rem;
}

.sidebar-nav {
  flex: 1 1 auto;
}

a.sidebar-link {
  padding: 0.625rem 1.625rem;
  position: relative;
  transition: all 0.35s;
  display: block;
}

a.sidebar-link:hover {
  background-color: rgba(249, 246, 246, 0.1882352941);
}

.sidebar-link[data-bs-toggle=collapse]::after {
  border: solid;
  border-width: 0 0.3rem 0.3rem 0;
  content: "";
  display: inline-block;
  padding: 5px;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  transform: rotate(-135deg);
  transition: all 0.2s ease-out;
}

.sidebar-link[data-bs-toggle=collapse].collapsed::after {
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

@media (max-width: 768px) {
  .sidebar-toggle {
    margin-left: -264px;
  }
  #sidebar.collapsed {
    margin-left: 0;
  }
}
.fullscreen-img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.fullscreen-img-overlay.active {
  display: flex;
}

#fullscreenImage {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
