.card body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
}

/* MAIN CONTAINER */
.container_prayer {
  max-width: 900px;
  margin: auto;
}

/* EACH PRAYER CARD */
.card {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT SIDE */
.left {
  width: 100%;
}

.status {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}

.date {
  font-size: 16px;
  margin-top: 5px;
  color: #444;
}

.name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  color: #111;
}

.link {
  margin-top: 10px;
  font-size: 14px;
  color: #1a73e8;
  cursor: pointer;
  text-decoration: underline;
}

/* RIGHT SIDE */
.right {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  white-space: pre-line;
}

/* Mobile View */
@media (max-width: 768px) {

    .container_prayer {
        width: 100%;
        padding: 0 10px;
    }

    .card {
        flex-direction: column; /* stack vertically */
        gap: 10px;
        padding: 15px 0;
    }

    .left,
    .right {
        width: 100%;
    }

    .status {
        font-size: 11px;
    }

    .date {
        font-size: 14px;
    }

    .name {
        font-size: 18px;
    }

    .link {
        font-size: 13px;
    }

    .right {
        font-size: 14px;
        line-height: 1.5;
    }
}