.pos-online-sales-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.pos-online-sales-tab.has-notification {
    border-color: rgba(37, 99, 235, 0.34);
    background: #eff6ff;
    color: #1d4ed8;
}

.pos-online-sales-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.pos-online-sales-count[hidden] {
    display: none;
}

.pos-online-sales-count.is-new {
    animation: pos-online-notification 0.6s ease 2;
}

@keyframes pos-online-notification {
    50% {
        transform: scale(1.18);
    }
}

.pos-presale-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -6px 0 12px;
}

.pos-presale-action {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.pos-presale-actions + a[href*="preventa="] {
    margin-top: 4px;
}

.pos-presale-reprint-hint {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
}

.pos-presale-reprint-hint strong {
    color: #0f172a;
    font-size: 0.92rem;
}

.pos-presale-reprint-hint span {
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.35;
}

.pos-presale-print-now {
    width: fit-content;
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 14px;
    text-decoration: none;
}

@media (max-width: 719px) {
    .pos-presale-action,
    .pos-presale-print-now {
        width: 100%;
    }

    .pos-presale-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
