/* App Popup Design */
#appDownloadPopup .popup-content {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 380px;
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 10; /* Ensure popup is above the blurred background */
}

#appDownloadPopup .popup-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    margin-bottom: 10px;
}

#appDownloadPopup .popup-description {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-bottom: 20px;
}

#downloadAppBtn {
    display: inline-block;
    background-color: #3d0549;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#downloadAppBtn:hover {
    background-color: #5721b3;
}

#appDownloadPopup .close-button {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    color: #999999;
    cursor: pointer;
}

#appDownloadPopup .close-button:hover {
    color: red;
}

/* Background overlay styles (add blur effect here) */
#appDownloadPopup.bg-black {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* This applies the blur effect */
    position: fixed;
    inset: 0;
    z-index: 5; /* Ensure the background is below the popup */
}