:root {
  --primary-color: #000000;
}

.bible-schedule-wrapper {
  position: relative;
  min-height: 200px;
}

.bible-schedule-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.bible-schedule-loader p {
  margin-top: 15px;
  font-size: 16px;
  color: #666;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bible-schedule {
  opacity: 0;
  animation: fadeIn 0.2s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.bible-book {
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.bible-book h2 {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.bible-chapter {
  margin: 20px 0;
}

.bible-chapter h3 {
  color: #34495e;
  margin-bottom: 15px;
}

.bible-verses {
  line-height: 1.8;
}

.bible-verse {
  margin-bottom: 10px;
}

.verse-number {
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 5px;
}

.verse-text {
  color: #333;
}

.error-message {
  color: #e74c3c;
  padding: 15px;
  background: #fadbd8;
  border-radius: 4px;
  text-align: center;
}
