
.bcft-container { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    overflow-x: auto; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
    border: 1px solid #eee; 
    margin: 20px 0; 
    background: #fff;
}

.bcft-user-table { 
    width: 100%; 
    border-collapse: collapse; 
    background: #fff; 
}

.bcft-user-table th { 
    background: #f8fafc; 
    color: #64748b; 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 0.05em; 
    padding: 16px; 
    border-bottom: 2px solid #edf2f7; 
    text-align: left; 
}

.bcft-user-table td { 
    padding: 16px; 
    border-bottom: 1px solid #f1f5f9; 
    color: #334155; 
    font-size: 14px; 
    vertical-align: middle; 
}

.bcft-user-table tr:hover { 
    background-color: #f8fafc; 
}

.bcft-img-wrapper { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 2px solid #fff; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    cursor: pointer; 
    transition: transform 0.2s ease;
}

.bcft-img-wrapper:hover {
    transform: scale(1.1);
}

.bcft-user-photo { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.user-count-wrapper {
  margin-right: 10px;
}

#bcft-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#bcft-modal.active {
    display: flex;
    opacity: 1;
}

.bcft-modal-box {
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: bcftScaleIn 0.3s ease;
}

@keyframes bcftScaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.bcft-modal-content {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.bcft-modal-info p {
    margin: 8px 0;
    font-size: 15px;
    color: #334155;
}

.bcft-modal-info strong {
    color: #0f172a;
}

.bcft-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.bcft-close:hover {
    color: #0f172a;
}