/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 999999999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    /* Center content */
    display: none;
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content-pop {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;

    text-align: center;

    animation: fadeIn 0.3s ease;
}

/* Title */
.modal-content-pop h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Text */
.modal-content-pop p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Buttons */
.modal-content-pop button {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* Install Button */
.flexButton{
    display: flex;
    gap:10px;
}
#installBtn {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    margin-right: 10px;
}

/* Close Button */
#closeModal {
    width: 100%;
    background: #ccc;
    color: #000;
}

/* Hover Effects */
#installBtn:hover {
    background: #0b5ed7;
}

#closeModal:hover {
    background: #b3b3b3;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 500px) {
    .modal-content-pop {
        padding: 15px;
    }

    .modal-content-pop h3 {
        font-size: 18px;
    }

    .modal-content-pop p {
        font-size: 13px;
    }
}