/* Popup styles */
/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Slightly darker background */
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.popup-content {
    background-color: #333; /* Darker background color */
    color: #fff; /* White text */
    margin: 10% auto;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    width: 70%;
    max-width: 500px;
    padding: 20px;
    text-align: left;
}


.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #777;
    cursor: pointer;
}

.popup-header {
    background-color: #ff6633;
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    text-align: center;
}

.popup-header h2 {
    font-size: 24px;
}

.separator {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

.close-button {
    background-color: #ff6633;
    color: #fff;
    border: none;
    border-radius: 0 0 8px 8px;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.close-button:hover {
    background-color: #ff3300;
    transform: scale(1.05);
}

.today-scripture-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6633; /* Button background color */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.today-scripture-button:hover {
    background-color: #ff3300;
    transform: scale(1.05);
}