#tatwar-pwa-bar {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #140c07;
    color: #f3e6c8;
    border: 1px solid #d97706;
    font: 800 13px/1.4 Cairo, Tahoma, sans-serif;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
#tatwar-pwa-bar > span:first-child {
    flex: 1;
    min-width: 0;
}
#tatwar-pwa-bar .tatwar-pwa-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
#tatwar-pwa-bar button {
    min-height: 32px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    font: 800 12px Cairo, Tahoma, sans-serif;
    cursor: pointer;
    background: #fbbf24;
    color: #110702;
}
#tatwar-pwa-bar button:last-child {
    background: #2a160a;
    color: #f3e6c8;
    border: 1px solid #6b4226;
}
@media (display-mode: standalone) {
    #tatwar-pwa-bar { display: none !important; }
}
@media (max-width: 420px) {
    #tatwar-pwa-bar {
        flex-wrap: wrap;
        font-size: 12px;
    }
    #tatwar-pwa-bar .tatwar-pwa-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
