
/* Base reset and adjustments for Bootstrap integration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 2em;
}

.navigation-links a {
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.2s;
}

.navigation-links a:hover {
    color: #ccc;
}

.date-selection p {
    font-size: 1.25em;
}

.card h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 0.5em;
}

footer {
    font-size: 0.9em;
}

/* Additional button styling adjustments for View Verse buttons */
.card button {
    font-size: 1em;
}

footer p {
    margin: 0;
}

#install-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.1em;
    color: #fff;
    background-color: #007bff; /* Blue background */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: background-color 0.3s, transform 0.2s;
    max-width: 200px;
    margin: 20px auto;
    text-align: center;
}

#install-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly enlarges on hover */
}

#install-button:active {
    transform: scale(0.98); /* Click effect */
}

    #iosInstallInstructions {
        display: none;
        max-width: 90%;
        margin: 20px auto;
        padding: 15px;
        background-color: #f9ed69; /* Bright yellow background */
        border: 2px solid #f08a24; /* Orange border */
        border-radius: 8px;
        text-align: center;
        font-size: 1.1em;
        color: #333;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
    }

    #iosInstallInstructions p {
        margin: 0;
        font-weight: bold;
    }
