#nav-indicator {
    transition: all 0.2s ease-out;
    box-shadow: 0 0 2px #b983ff, 0 0 12px #e3cdffa3;
    border-radius: 100px;
}

#nav-wrapper li a {
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

#nav-wrapper li a:hover {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.1);
}


.blog-container {
    position: relative;
}
  
.blog-entry-list {
  overflow-y: auto !important;
  padding: 10px 20px 0 10px;
  margin: -10px -10px 0 -10px;
  max-height: calc(50vh - 10px);
  padding-bottom: 24px;
  scrollbar-gutter: stable;
}

.blog-entry-list::-webkit-scrollbar {
  width: 6px;
}

.blog-entry-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.blog-entry-list::-webkit-scrollbar-thumb {
  background: rgba(185, 131, 255, 0.5);
  border-radius: 3px;
}

.blog-entry {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  width: calc(100% - 14px);
}

.blog-entry:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.fade-gradient {
  z-index: 5;
  right: 20px;
}

.blog-entry:hover .blog-entry-title {
  color: var(--dreamy-soft, #e0aaff);
}

.blog-body {
    text-align: justify;
}