#attribute-description-box {
  background: #f9f9f9;
  border: 2px solid #3cb371;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-family: 'Hind Siliguri', sans-serif;
  animation: fadeIn 0.5s ease-in-out;
}

.desc-title {
  font-weight: 600;
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
