.custom-pwa-button {
    background-color: #DA0000;
    color: white;
    border-radius: 7px;
	font-size: 20px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.custom-pwa-button:hover {
    animation: bounce 0.3s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.custom-pwa-button i {
    margin-right: 5px;
}



.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #fefefe;
    margin: 30% auto;
    padding: 30px;
    border: 1px solid #888;
	border-radius: 9px;
    width: 80%;
}



.modal i {
    font-size: 20px; /* Example size */
    vertical-align: middle;
    margin-right: 5px;
	margin-left: 5px;
}

.modal-content .close {
    color: white;
    background-color: #007aff; /* iOS blue color */
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
}

.modal-content .close:hover {
    background-color: #0051a7;
}
