/**
 * Bee Contact Button - Frontend Styles
 * Floating button, menu, and callback form
 * All selectors prefixed with .bcb-container to avoid conflicts
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --bcb-primary: #25D366;
    --bcb-primary-dark: #128C7E;
    --bcb-text: #333333;
    --bcb-text-light: #666666;
    --bcb-bg: #ffffff;
    --bcb-border: #e0e0e0;
    --bcb-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --bcb-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --bcb-radius: 16px;
    --bcb-radius-sm: 8px;
    --bcb-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bcb-zalo-color: #0068FF;
}

/* ============================================
   Custom Icons (Zalo, etc.)
   ============================================ */
.bcb-icon-zalo {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('../icons/zalo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Fallback if SVG not loaded */
.bcb-icon-zalo::before {
    content: 'Z';
    display: none;
}

/* ============================================
   Container
   ============================================ */
.bcb-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    box-sizing: border-box;
}

.bcb-container *,
.bcb-container *::before,
.bcb-container *::after {
    box-sizing: border-box;
}

/* ============================================
   Floating Trigger Button
   ============================================ */
.bcb-container .bcb-trigger {
    width: var(--bcb-trigger-size);
    height: var(--bcb-trigger-size);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: var(--bcb-trigger-icon-size);
    box-shadow: var(--bcb-shadow-lg);
    transition: transform var(--bcb-transition), box-shadow var(--bcb-transition);
    position: relative;
    z-index: 10;
    padding: 0;
    margin: 0;
    background: var(--bcb-primary);
}

.bcb-container .bcb-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.bcb-container .bcb-trigger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.4);
}

/* Pulse Animation */
.bcb-container .bcb-trigger::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: bcb-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes bcb-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Toggle icons */
.bcb-container .bcb-trigger-icon {
    transition: transform var(--bcb-transition), opacity var(--bcb-transition);
}

.bcb-container .bcb-trigger-close {
    transition: transform var(--bcb-transition), opacity var(--bcb-transition);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.5);
}

.bcb-container.is-open .bcb-trigger-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.bcb-container.is-open .bcb-trigger-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
}

/* Hide slider content when menu is open */
.bcb-container.is-open .bcb-trigger-content {
    opacity: 0;
    visibility: hidden;
}

/* Stop pulse when open */
.bcb-container.is-open .bcb-trigger::before {
    animation: none;
    opacity: 0;
}

/* ============================================
   Contact Menu
   ============================================ */
.bcb-container .bcb-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: var(--bcb-item-bg, #ffffff);
    border-radius: var(--bcb-radius);
    box-shadow: var(--bcb-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all var(--bcb-transition);
    overflow: hidden;
}

.bcb-container.is-open .bcb-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Menu Header */
.bcb-container .bcb-menu-header {
    background: linear-gradient(135deg, var(--bcb-primary), var(--bcb-primary-dark));
    padding: 12px 16px;
    color: #ffffff;
    border-radius: var(--bcb-radius) var(--bcb-radius) 0 0;
}

.bcb-container .bcb-menu-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

/* Menu Content */
.bcb-container .bcb-menu-content {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

/* ============================================
   Channels List
   ============================================ */
.bcb-container .bcb-channels {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bcb-container .bcb-channel {
    border-bottom: 1px solid var(--bcb-border);
    margin: 0;
    padding: 0;
}

.bcb-container .bcb-channel:last-child {
    border-bottom: none;
}

.bcb-container .bcb-channel-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--bcb-item-text, #333333);
    transition: background var(--bcb-transition);
    background: transparent;
}

.bcb-container .bcb-channel-link:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.bcb-container .bcb-channel-link:focus {
    outline: none;
    background: #f0f0f0;
}

.bcb-container .bcb-channel-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--bcb-item-icon-size, 20px);
    color: var(--bcb-item-icon-color, #25D366);
    margin-right: 10px;
    flex-shrink: 0;
}

.bcb-container .bcb-channel-icon.custom-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 4px;
}

.bcb-container .bcb-channel-label {
    font-size: var(--bcb-item-font-size, 16px);
    font-weight: 400;
    line-height: 1.4;
    color: inherit;
}

/* ============================================
   Filled Icon Style (Hình tròn)
   ============================================ */
.bcb-container .bcb-icon-filled .bcb-channel-icon {
    width: var(--bcb-filled-icon-size, 36px);
    height: var(--bcb-filled-icon-size, 36px);
    border-radius: 50%;
    background: var(--bcb-item-icon-color, #25D366);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(var(--bcb-filled-icon-size, 36px) * 0.44);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bcb-container .bcb-icon-filled .bcb-channel-icon.custom-icon {
    width: var(--bcb-filled-icon-size, 36px);
    height: var(--bcb-filled-icon-size, 36px);
    padding: calc(var(--bcb-filled-icon-size, 36px) * 0.16);
    border-radius: 50%;
    background: var(--bcb-item-icon-color, #25D366);
    object-fit: contain;
    filter: brightness(0) invert(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bcb-container .bcb-icon-filled .bcb-channel-link:hover .bcb-channel-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ============================================
   Callback Section
   ============================================ */
.bcb-container .bcb-callback-section {
    padding: 12px 16px;
    border-top: 1px solid var(--bcb-border);
    background: #fafafa;
}

.bcb-container .bcb-callback-header {
    margin-bottom: 8px;
}

.bcb-container .bcb-callback-header h4 {
    margin: 0;
    font-size: var(--bcb-callback-title-size, 13px);
    font-weight: 600;
    color: var(--bcb-text);
    line-height: 1.4;
}

/* Callback Form */
.bcb-container .bcb-callback-form {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bcb-container .bcb-form-group {
    flex: 1;
}

.bcb-container .bcb-phone-input {
    width: 100%;
    padding: var(--bcb-callback-input-padding, 10px) 12px;
    border: 1px solid var(--bcb-border);
    border-radius: var(--bcb-radius-sm);
    font-size: var(--bcb-callback-input-size, 14px);
    color: var(--bcb-text);
    transition: border-color var(--bcb-transition), box-shadow var(--bcb-transition);
    box-sizing: border-box;
    background: #ffffff;
    margin: 0;
}

.bcb-container .bcb-phone-input:focus {
    outline: none;
    border-color: var(--bcb-primary);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.bcb-container .bcb-phone-input::placeholder {
    color: #999;
    font-size: calc(var(--bcb-callback-input-size, 14px) - 1px);
}

.bcb-container .bcb-submit-btn {
    padding: var(--bcb-callback-input-padding, 10px) 14px;
    background: var(--bcb-callback-btn-color, var(--bcb-primary));
    color: #ffffff;
    border: none;
    border-radius: var(--bcb-radius-sm);
    font-size: var(--bcb-callback-btn-size, 13px);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--bcb-transition), transform var(--bcb-transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    margin: 0;
}

.bcb-container .bcb-submit-btn:hover {
    filter: brightness(0.9);
}

.bcb-container .bcb-submit-btn:active {
    transform: scale(0.98);
}

.bcb-container .bcb-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Message */
/* Form Message */
.bcb-container .bcb-form-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: bcb-fade-in 0.3s ease-out;
    border: 1px solid transparent;
}

@keyframes bcb-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bcb-container .bcb-form-message.success {
    background: #F6FFED;
    color: #52C41A;
    border-color: #B7EB8F;
}

.bcb-container .bcb-form-message.error {
    background: #FFF2F0;
    color: #FF4D4F;
    border-color: #FFCCC7;
}

/* Turnstile Container */
.bcb-container .bcb-turnstile-container {
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    order: 10;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 480px) {
    .bcb-container {
        bottom: 16px;
        right: 16px;
    }

    .bcb-container .bcb-trigger {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .bcb-container .bcb-menu {
        width: calc(100vw - 32px);
        bottom: 72px;
        right: 0;
    }

    .bcb-container .bcb-callback-form {
        flex-direction: column;
    }

    .bcb-container .bcb-submit-btn {
        width: 100%;
        padding: 14px;
    }

    /* Prevent zoom on input focus - iOS */
    .bcb-container .bcb-phone-input {
        font-size: 16px;
    }
}

/* Ensure menu doesn't go off screen on small heights */
@media (max-height: 600px) {
    .bcb-container .bcb-menu-content {
        max-height: 250px;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .bcb-container .bcb-channel-link:hover {
        background: #e0e0e0;
    }

    .bcb-container .bcb-phone-input {
        border-width: 2px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bcb-container .bcb-trigger::before {
        animation: none;
    }

    .bcb-container .bcb-trigger,
    .bcb-container .bcb-menu,
    .bcb-container .bcb-channel-link,
    .bcb-container .bcb-phone-input,
    .bcb-container .bcb-submit-btn {
        transition: none;
    }
}

/* ============================================
   Button Design Styles
   ============================================ */
.bcb-container .bcb-trigger-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Text Style */
.bcb-container .bcb-trigger.bcb-style-text {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.bcb-container .bcb-trigger-text {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

/* Icon Slide Style */
.bcb-container .bcb-trigger.bcb-style-icon_slide .bcb-trigger-slider {
    width: 100%;
    height: 100%;
}

/* Slider container */
.bcb-container .bcb-trigger-slider {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bcb-container .bcb-trigger.bcb-style-slide .bcb-trigger-slider {
    width: 100%;
    height: 100%;
}

/* Slider transition */
.bcb-container .bcb-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.bcb-container .bcb-slider-item.active {
    opacity: 1;
}

/* Slider Effect: Fade (default) */
.bcb-container .bcb-effect-fade .bcb-slider-item {
    transition: opacity 0.5s ease-in-out;
}

/* Slider Effect: Slide Up */
.bcb-container .bcb-effect-slide-up .bcb-slider-item {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bcb-container .bcb-effect-slide-up .bcb-slider-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Effect: Slide Left */
.bcb-container .bcb-effect-slide-left .bcb-slider-item {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bcb-container .bcb-effect-slide-left .bcb-slider-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slider Effect: Zoom */
.bcb-container .bcb-effect-zoom .bcb-slider-item {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bcb-container .bcb-effect-zoom .bcb-slider-item.active {
    opacity: 1;
    transform: scale(1);
}

.bcb-container .bcb-slider-icon {
    font-size: inherit;
    color: #ffffff !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Adjustments for new styles */
@media (max-width: 480px) {

    .bcb-container .bcb-trigger.bcb-style-text,
    .bcb-container .bcb-trigger.bcb-style-icon_slide {
        padding: 0 16px;
    }

    .bcb-container .bcb-trigger-text {
        font-size: 14px;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ============================================
   Reset overrides from themes
   ============================================ */
.bcb-container ul,
.bcb-container li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bcb-container a {
    text-decoration: none;
    color: inherit;
}

.bcb-container button {
    font-family: inherit;
}

.bcb-container h3,
.bcb-container h4 {
    margin: 0;
    padding: 0;
}

.bcb-container input {
    font-family: inherit;
}

/* ============================================
   Positioning & Secondary Button
   ============================================ */

/* Positioning */
.bcb-container.bcb-position-right {
    right: 24px;
    left: auto;
}

.bcb-container.bcb-position-left {
    left: 24px;
    right: auto;
}

/* Ensure menu follows container position */
.bcb-container.bcb-position-left .bcb-menu {
    right: auto;
    left: 0;
    transform-origin: bottom left;
}

/* Secondary Button */
.bcb-secondary-btn {
    position: fixed;
    bottom: 24px;
    width: var(--bcb-secondary-size, 50px);
    height: var(--bcb-secondary-size, 50px);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    z-index: 999990;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.bcb-secondary-btn:hover {
    transform: scale(1.1);
}

.bcb-secondary-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Secondary Position - Opposite side of screen from main button */
.bcb-secondary-btn.bcb-sec-pos-left {
    left: 24px;
    right: auto;
}

.bcb-secondary-btn.bcb-sec-pos-right {
    right: 24px;
    left: auto;
}

/* ============================================
   Secondary Button: Display Styles
   ============================================ */
.bcb-secondary-btn.bcb-sec-type-icon_text {
    background: var(--bcb-sec-bg, #25D366);
    color: var(--bcb-sec-text, #ffffff);
    border: var(--bcb-sec-border, none);
    overflow: hidden;
    /* Force Circle */
    width: var(--bcb-secondary-size, 50px);
    height: var(--bcb-secondary-size, 50px);
    border-radius: 50% !important;
}

/* Flex Content: Stacked (Icon Top, Text Bottom) */
.bcb-secondary-btn .bcb-sec-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1.1;
    /* padding-bottom: 3px; Removed to prevent text clipping at bottom */
}

/* Icon style */
/* Icon style */
.bcb-secondary-btn .bcb-sec-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-bottom: 2px;
    display: block;
}

/* Masked Icon for coloring SVGs */
.bcb-sec-icon-mask {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    display: block;
    background-color: var(--bcb-sec-icon-color, #ffffff);
    -webkit-mask-image: var(--bcb-mask-url);
    mask-image: var(--bcb-mask-url);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* Admin Preview Background (for Transparent SVGs) */
.bcb-sec-icon-preview {
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
        linear-gradient(-45deg, #ccc 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ccc 75%),
        linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 10px 10px;
    background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
}

.bcb-secondary-btn i {
    font-size: 18px;
    margin-bottom: 2px;
}

/* Text logic */
.bcb-secondary-btn .bcb-sec-text {
    margin-left: 0;
    /* Remove left margin from row layout */
    font-size: 10px;
    /* Smaller text to fit circle */
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    max-width: 90%;
    overflow: hidden;
    text-overflow: clip;
}

/* Ensure no underline */
.bcb-secondary-btn {
    text-decoration: none !important;
}

/* Removed Pill Shape override - Always Circle */
.bcb-secondary-btn.bcb-has-text {
    /* Kept for potentially specific spacing adjustments if needed, 
       but removing shape/width overrides */
}

/* ============================================
   3-Step Mode Styles
   ============================================ */

/* Step 1: Channel Type List */
.bcb-step1-channels .bcb-type-count {
    margin-left: auto;
    font-size: 12px;
    color: #888;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
}

.bcb-step1-channels .bcb-channel-link {
    display: flex;
    justify-content: flex-start;
}

.bcb-step1-channels .bcb-type-link:hover .bcb-type-count {
    background: var(--bcb-primary);
    color: #fff;
}

/* Step 2: Contacts Popup */
/* Step 2: Contacts Popup (Refactored) */
.bcb-step-container {
    position: relative;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bcb-step-view {
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

/* Step 2 starts hidden (slid right) */
.bcb-step-2-view {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: 100%;
}

/* Active State Classes */
.bcb-view-active-step2 .bcb-step-1-view {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.bcb-view-active-step2 .bcb-step-2-view {
    position: relative;
    /* Becomes relative to dictatate container height */
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.bcb-popup-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bcb-border);
    background: linear-gradient(135deg, var(--bcb-primary), var(--bcb-primary-dark));
    color: #fff;
}

.bcb-popup-back {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px 10px;
    margin-right: 8px;
    border-radius: 6px;
    transition: background 0.2s;
    font-size: 14px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bcb-popup-back:hover {
    background: rgba(255, 255, 255, 0.3);
}

.bcb-popup-title {
    font-weight: 600;
    font-size: 14px;
}

/* Contacts List */
.bcb-contacts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    /* No overflow/fixed height here to allow container to grow */
}

.bcb-contact-item {
    border-bottom: 1px solid var(--bcb-border);
}

.bcb-contact-item:last-child {
    border-bottom: none;
}

.bcb-contact-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--bcb-text);
    transition: background 0.2s;
}

.bcb-contact-link:hover {
    background: #f5f5f5;
}

/* Avatar */
.bcb-contact-avatar-wrap {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bcb-contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.bcb-contact-avatar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Contact Info */
.bcb-contact-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.bcb-contact-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--bcb-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bcb-contact-value {
    font-size: 12px;
    color: var(--bcb-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}