/* Container scroll smoothly */
#recueil-page {
  margin: 0 auto;
  max-width: 1500px;
}

.poem-container {
  max-height: 300px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(150, 100, 200, 0.25);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.title {
  color: #5e3b3b !important;
}

.shadow-soft {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.poem-item {
  border: none !important;
  padding: 10px 14px;
  border-radius: 10px !important;
  margin-bottom: 4px;
  transition: 0.25s ease;
  background: rgba(255, 255, 255, 0.6);
}

/* When we hover the lines */
.poem-item:hover {
  background: #c8b6a2;
  transform: translateX(4px);
}

/* Links (title of the poems) */
.poem-list .poem-link {
  color: #5e3b3b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.poem-item.poem-lu {
  background: rgba(240, 230, 210, 0.8); 
  transition: background 0.25s ease;
}

/* Styles for the scrollbar */
.poem-container::-webkit-scrollbar {
  width: 8px;
}
.poem-container::-webkit-scrollbar-thumb {
  background: #c8b6a2;
  border-radius: 10px;
}
.poem-container::-webkit-scrollbar-thumb:hover {
  background: #5e3b3b;
}

/* Be sure that the footer appear */
footer {
  display: visible !important; 
}
