.order-watch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.order-watch-action-btn {
    flex: 1;
    min-width: 100px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(25, 118, 210, 0.35);
    background: #fff;
    color: #1976d2;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.order-watch-action-btn:first-child {
    background: #1976d2;
    color: #fff;
    border-color: #1976d2;
}

.order-watch-action-btn:active {
    opacity: 0.88;
}

.order-watch-toast {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    z-index: 99998;
    background: rgba(21, 101, 192, 0.96);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: orderWatchToastIn 0.25s ease-out;
}

@keyframes orderWatchToastIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
