.blog-entry {
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #b88da2;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;

  max-height: 390px;
  overflow-y: auto;
  box-sizing: border-box;
}

.blog-entry::-webkit-scrollbar {
  width: 6px;
}
.blog-entry::-webkit-scrollbar-thumb {
  background-color: #b88da2;
  border-radius: 4px;
}
.blog-entry::-webkit-scrollbar-track {
  background: #f7f2f8;
}

.titulo-indice {
  font-size: 1rem;
  color: #b6889e;
  margin-top: 0;
  margin-bottom: 10px;
}
.lista-archivo {
  margin: 0;
  padding-left: 20px;
  line-height: 1.6;
}
.lista-archivo a,
.btn-volver {
  color: #b6889e;
  font-weight: bold;
  text-decoration: none;
}
.lista-archivo a:hover,
.btn-volver:hover {
  text-decoration: underline;
}

.default-view {
  display: block;
}

.blog-entry:target ~ .default-view {
  display: none !important;
}

.blog-entry:target {
  display: block;
  animation: fadeInSimple 0.4s ease;
}

#blog-home:target {
  display: block !important;
}

@keyframes fadeInSimple {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gen-blog-1 {
  border: 0;
  border-top: 3px double #b88da2;
  margin: 15px 0;
}

#leftSidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 20px 20px;
}

.box-poema {
  padding: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  max-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 10px solid transparent;
  border-image: url("/images/borders/whitelace.png") 34 round;
  background-clip: padding-box;
  overflow-y: auto;
  box-sizing: border-box;
}

#poema-display {
  font-style: italic;
  margin-top: 0;
  line-height: 1.6;
  color: #4a3e4e;
  white-space: pre-line;
}
.btn-poema {
  background: #b6889e;
  color: #ebe3f1;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  align-self: flex-end;
  transition: transform 0.2s ease;
}

.btn-poema:hover {
  background: #b88da2;
  color: #e3d6e7;
}

#feed-pensamientos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.tweet-box {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #b88da2;
  border-left: 4px solid #e3d6e7;
  border-radius: 2px;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.tweet-text {
  margin: 0 0 5px 0;
  line-height: 1.4;
  color: #b6889e;
}

.tweet-date {
  color: #b88da2;
  font-size: 0.7rem;
  display: block;
  text-align: right;
}

.no-tweets {
  text-align: center;
  font-style: italic;
  color: #b88da2;
  font-size: 0.85rem;
}

#mainContent {
  position: relative;
  overflow: visible;
  z-index: 10;
}

.corner-1 {
  position: absolute;
  width: 160px;
  z-index: 999;
  top: -20px;
  right: -20px;
  filter: drop-shadow(5px 5px 5px rgba(130, 116, 139, 1));
}

@media only screen and (max-width: 850px) {
  #leftSidebar h2 {
    margin-top: 16px;
  }

  .corner-1 {
    width: 130px;
    top: -18px;
    right: -18px;
  }
}
