.call-status-panel {
    position: fixed;
    bottom: 64px;
    left: 10px;
    width: 415px;
    background-color: var(--light-panel);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 11;
    border-end-end-radius: 0;
    border-end-start-radius: 0;
    z-index: 10;
}

.call-status-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.connection-indicator {
    width: 20px;
    height: 20px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.connection-text {
    flex: 1;
    margin-left: 10px;
}

.connection-status {
    color: var(--success);
    font-size: 14px;
    font-weight: 500;
}

.channel-info {
    color: var(--text-muted);
    font-size: 12px;
}

.clickable-status:hover,
.clickable-info:hover {
    text-decoration: underline;
}

.disconnect-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
}

.disconnect-btn:hover {
    background-color: var(--background-accent);
}

.call-status-row2 {
    display: flex;
    gap: 8px;
}

.quick-btn {
    flex: 1;
    background-color: var(--background-tertiary);
    border: none;
    border-radius: 20px;
    padding: 6px 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: all 0.2s ease;
    margin-top: 3px;
}

.quick-btn:hover {
    background-color: var(--background-accent);
}

.quick-btn.active {
    background-color: var(--success);
    color: white;
}