.pwa-banner {
    border: none;
    border-radius: 0px 16px;
    background: linear-gradient(177deg, #ffff54 0%, #b31d17 100%);
    color: white;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(218, 37, 29, 0.2);
    text-align: center;
    height: 8%;
    align-content: center;
    align-items: center;
}

.pwa-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
}

.btn-pwa-install {
    background: #ffff00;
    color: #b31d17 !important;
    border: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgb(204, 204, 0);
}

.btn-pwa-install:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgb(204, 204, 0);
    background: #fff;
}

.btn-pwa-install:active {
    transform: translateY(2px);
    box-shadow: 0 0 0;
}