/* Short Prayers Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 940px;
    margin: auto;
    background-color: #ffffff;
    color: #000000;
}
h1, h2, h3 {
    color: #000000;
}
ol {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
    padding: 10px;
    font-style: italic;
}
li:nth-child(odd) {
    background-color: #f9f9f9;
}
li:nth-child(even) {
    background-color: #e9e9e9;
}
.icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.icon img {
    width: 60px;
    height: auto;
}
a {
    color: #000000;
    text-decoration: underline;
}
.rounded-img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}
.responsive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.responsive-list li {
  flex: 1 1 auto;
  background-color: #f9f9f9;
}

.responsive-list a {
  text-decoration: none;
  color: #000;
}

.responsive-list a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .responsive-list {
    flex-direction: column;
  }
}