/* TargetingMode — targeting banner with prompt text and cancel button. */

.targeting-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.targeting-banner.active {
    transform: translateY(0);
}

.targeting-banner-text {
    flex: 1;
    min-width: 0;
}

.targeting-banner-card {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 400;
}

.targeting-banner-prompt {
    margin-top: 2px;
}

.targeting-cancel-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
}

.targeting-cancel-btn:active {
    background: rgba(255, 255, 255, 0.15);
}
