#install-prompt-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff3c3c, #ff9900);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    min-width: 300px; /* Ensures the prompt has a minimum width */
    max-width: 500px; /* Limits the width for larger screens */
}

#install-prompt-container.show {
    opacity: 1;
    visibility: visible;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-50%) translateY(100px);
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}

#install-button, #dismiss-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: bold;
}

#install-button:hover, #dismiss-button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

#install-button {
    background: linear-gradient(135deg, #ff3c3c, #ff9900);
}

#dismiss-button {
    background: #6c757d;
}

#dismiss-button:hover {
    background: #545b62;
}

#install-button:focus, #dismiss-button:focus {
    outline: none;
}

#install-prompt-container button:active {
    transform: scale(0.95);
}

/* Optional: Close Button */
#close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    transition: color 0.3s ease;
}

#close-btn:hover {
    color: #ff7f50;
}













#install-prompt-message {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

#install-prompt-message h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

#install-prompt-message p {
    font-size: 16px;
    margin-top: 5px;
    color: #f0f0f0;
    line-height: 1.5;
}
