:root {
  --primary-color: #5E3023;
  --secondary-color: #D4A59A;
  --accent-color: #8B5A2B;
  --light-color: #F5F0E8;
  --dark-color: #3A2D1D;
}

.verse-container {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.verse-container:hover {
  background-color: rgba(212, 165, 154, 0.05);
}

.verse-number {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .verse-container {
    padding-left: 2rem;
  }
  
  .verse-number {
    width: 25px;
    height: 25px;
  }
}

.verse-text {
  line-height: 1.8;
}