.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;
}

/* Header H2 Title */
.modal-header h2 {
    font-size: 1.1rem; /* Larger title font size */
    margin-bottom: 10px; /* Space between title and paragraph */
    text-align: center;
}

.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: 9999 !important;
    left: 0;
    top: 0;
    width: 100%;
    min-height: auto !important; 
    height: auto !important; 
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

/* Modal Icon (App Icon) */
.modal-header .app-icon {
    width: 90px !important; /* Adjust the icon size */
    height: auto; /* Keep the aspect ratio */
    margin: 0 auto 15px; /* Center the icon and add space below it */
    display: block;
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow for a cleaner look */
}

.modal-content {
    background-color: white;
    z-index: 9999 !important;
    margin: 30% auto;
    padding: 30px;
    border: 1px solid #888;
	border-radius: 9px;
    width: 80%;
}

/* Paragraph Text */
.modal-content p {
    font-size: 1rem; /* Font size for description */
    z-index: 9999 !important;
    color: #333; /* Darker text color */
    margin-bottom: 15px; /* Space between the description and the instructions */
    text-align: center;
}

/* Instruction List */
.instruction-list ol {
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

.instruction-list li {
    font-size: 1rem; /* Font size for list items */
    margin: 10px 0; /* Add vertical space between list items */
    display: flex;
    align-items: center; /* Align icons with text */
}

.instruction-list li i {
    font-size: 1.2rem; /* Adjust icon size */
    margin-right: 10px; /* Add space between the icon and text */
}


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

.modal-content .close {
    color: black;
    background-color: white; /* iOS blue color */
    border: solid 1px rgba(169, 169, 169, 0.219);
    padding: 5px 10px;
 
    border-radius: 8px;
    cursor: pointer;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
}

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