.pwa-prompt {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    border: none;
    padding: 12px;
    background-color: #FFC300;
    color: black;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.3s ease-out forwards;
}

.pwa-prompt.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 1;
    transform: translateY(0);
}

.pwa-prompt:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: #FFD700;
}

.pwa-prompt:active {
    transform: translateY(1px) !important;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    background-color: #FFB700;
}

.pwa-prompt::before {
    content: '⬇️';
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
}

.pwa-prompt-close {
    display: none; /* Hide close button in button style */
}

.pwa-prompt-buttons {
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .pwa-prompt {
        display: none !important;
    }
}
