body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    transition: background 0.5s ease;
}

.content-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    margin-bottom: 20px;
}

.verse-text, .prayer-text {
    font-size: 1.8rem;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.verse-reference {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Subtle dark background for footer */
    color: #ffffff; /* White text for footer */
    padding: 20px 10px; /* Spacing inside the footer */
    border-radius: 10px; /* Rounded corners for footer consistency */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.footer-link, .footer .share-link {
    color: #3579ED; /* Updated link color for all devices */
    text-decoration: none;
    font-size: 1rem; /* Uniform size for all links */
    margin: 0 10px; /* Space between links */
}

.footer-link:hover, .footer .share-link:hover {
    text-decoration: underline;
    color: #ffcc00; /* Optional hover effect color */
}

.refresh-text {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}

h2 {
    margin-top: 20px;
}

/* Updated CSS for Share Links */
.footer .share-links {
    margin-top: 20px; /* Adds extra space above the links */
    display: block; /* Ensures the share links are block-level for proper spacing */
    text-align: center; /* Center-aligns the links */
}

.reference-note {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem; /* Slightly smaller font for reference note */
    color: #d3d3d3; /* Light grey for subtle emphasis */
}

/* Additional spacing for mobile devices */
@media (max-width: 767px) {
    .footer {
        font-size: 0.8rem; /* Adjust font size for smaller screens */
    }

    .footer .share-links {
        margin-top: 30px; /* Adds extra space for mobile devices */
        display: block; /* Ensures the links stack properly if needed */
    }

    .footer .footer-link, .footer .share-link {
        display: block; /* Forces the links to stack for readability */
        margin-bottom: 10px; /* Adds space between stacked links */
        color: #3579ED; /* Ensure consistent color for mobile links */
    }
}

