/* Call Status Bar - Green bar inside chat popup when in active call */
.call-status-bar {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.call-status-bar:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.call-status-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 1200px;
}

.call-status-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.call-status-bar-timer {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    min-width: 50px;
    text-align: center;
}

.call-status-bar-separator {
    opacity: 0.7;
    font-size: 12px;
}

.call-status-bar-contact {
    font-weight: 500;
}

.call-status-bar-type {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Chat button styles when call is active */
.chat-btn.call-active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

.chat-btn.call-active:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%) !important;
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4) !important;
}

.chat-btn.call-active svg {
    display: none;
}

.chat-btn.call-active .call-icon {
    display: block !important;
}

.chat-btn .call-icon {
    display: none;
    width: 24px;
    height: 24px;
}

/* Dark mode support */
