:root {
    --bg-body: #ffffff;
    /* Clean White Details */
    --bg-sidebar: #D8E4F5;
    --bg-card: #ffffff;

    --primary-color: #0056D2;
    /* Rizen Blue */
    --primary-hover: #0044A5;
    /* Darker Rizen Blue */
    --accent-color: #00A3E0;
    /* Light Blue Accent */

    --text-primary: #333333;
    /* Logo Text Grey */
    --text-secondary: #666666;

    --border-color: #e1e4e8;

    --success-color: #107C10;
    --danger-color: #D13438;

    --radius-md: 8px;
    --shadow-sm: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
    --shadow-md: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Inter', sans-serif;
    /* Corporate Font Stack */
    background: linear-gradient(135deg, var(--bg-body) 0%, #ffffff 100%);
    /* Rizen Blue Gradient */
    color: var(--text-primary);
    height: 100vh;
    overflow: hidden;
}

.app-container {
    display: flex;
    height: 100%;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
    overflow-y: auto;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: width 0.3s ease;
    position: relative;
    white-space: nowrap;
    /* Prevent text wrapping during collapse */
}

.sidebar.collapsed {
    width: 80px;
}

/* Hide text elements */
.sidebar.collapsed .sidebar-header h2 span,
.sidebar.collapsed .section-header h3,
.sidebar.collapsed .agent-name,
.sidebar.collapsed .call-controls h3,
.sidebar.collapsed .radio-label span,
.sidebar.collapsed .form-group,
.sidebar.collapsed .btn-primary span,
.sidebar.collapsed .btn-secondary span,
.sidebar.collapsed .bulk-info,
.sidebar.collapsed .sidebar-footer span,
.sidebar.collapsed .gender-columns,
.sidebar.collapsed .bulk-stats,
.sidebar.collapsed .sidebar-footer button span {
    display: none;
}

/* Center icons */
.sidebar.collapsed .sidebar-header h2 {
    justify-content: center;
}

.sidebar.collapsed .agent-item {
    justify-content: center;
    padding: 0.5rem 0;
}

.sidebar.collapsed .agent-info {
    display: none;
    /* Hide info container entirely */
}

.sidebar.collapsed .sidebar-footer {
    display: flex;
    justify-content: center;
}

.sidebar.collapsed .icon-btn-block {
    width: auto;
    padding: 0.5rem;
}

.sidebar.collapsed .sidebar-footer button i {
    margin: 0;
}

.sidebar-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    overflow: hidden;
    /* Hide overflowing text */
}

.icon-btn-block {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: var(--radius-md);
}

.icon-btn-block:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

#refreshAgentsBtn {
    background-color: var(--primary-color);
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: none;
}

#refreshAgentsBtn:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
}

.sidebar-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-controls {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.25rem;
    transition: color 0.2s;
}

.toggle-btn:hover {
    color: var(--primary-color);
}

.sidebar-header h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.sidebar-logo {
    height: 48px;
    width: auto;
}


.section-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gender-col h4 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
    border-bottom: none;
    padding-bottom: 0;
}



.icon-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

/* Agents */
.agents-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gender-columns {
    display: flex;
    gap: 8px;
}

.gender-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

#male-agents,
#female-agents {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gender-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.agent-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: white;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.agent-item:hover {
    background-color: #f8f9fa;
    border-color: var(--border-color);
}

.agent-item.active {
    background-color: #EBF3FC;
    /* Light Blue Tint */
    border-color: var(--primary-color);
}

.agent-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.agent-name {
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agent-status {
    display: none;
    /* Hide status text for compact view */
}

/* Controls */
.call-controls h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.radio-group {
    display: flex;
    background-color: #f1f1f1;
    padding: 4px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.radio-label {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.btn-icon-img {
    height: 1.2em;
    width: auto;
    filter: brightness(0) invert(1);
    /* Make icon white */
    vertical-align: middle;
    margin-right: 8px;
}

.radio-label input {
    display: none;
}

.radio-label span {
    display: block;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-radius: 4px;
    color: var(--text-secondary);
    transition: all 0.2s;
    font-weight: 500;
}

.radio-label input:checked+span {
    background-color: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.sidebar-divider {
    height: 1px;
    background-color: #e1e4e8;
    margin: 1.5rem 0;
    width: 100%;
}

/* Forms */
.call-form {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.call-form.active {
    display: flex;
    justify-content: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
}

input,
select {
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
    background-color: white;
    transition: border-color 0.2s;
}

input:focus,
select:focus {
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

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

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 2rem;
    gap: 1.5rem;
}

.main-header {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

/* Logo Image */
.logo-img {
    height: 80px;
    width: auto;
    vertical-align: middle;
}

.main-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.25rem;
    margin-left: 0;
    /* Align with text */
}

/* Tabs */
.tabs-nav {
    display: flex;
    gap: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

/* Tab Panes */
.tab-content {
    flex: 1;
    overflow-y: auto;
    padding-top: 1rem;
}

.tab-pane {
    display: none;
    height: 100%;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transcript */
.transcript-container {
    background: white;
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.transcript-header {
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--success-color);
    font-size: 0.85rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.transcript-box {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid #333;
}

.message.agent,
.message.assistant {
    align-self: flex-start;
    background-color: white;
    color: var(--text-primary);
}

.message.customer,
.message.user {
    align-self: flex-start;
    background-color: #fafafa;
    color: var(--text-primary);
}

.message.system {
    align-self: center;
    background: #f1f1f1;
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-style: italic;
}

/* Active Calls Grid Logic */
.active-calls-grid {
    display: grid;
    gap: 1.5rem;
    height: 100%;
    width: 100%;
}

/* Single Call State: Full width/height */
.active-calls-grid:not(.multi-call) {
    grid-template-columns: 1fr;
}

/* Multi-Call State: 2-column grid */
.active-calls-grid.multi-call {
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
    overflow-y: auto;
}

/* Call Monitor Card */
.call-monitor-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.active-calls-grid.multi-call .call-monitor-card {
    height: 500px;
}

.call-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: var(--bg-sidebar);
    border-bottom: 1px solid var(--border-color);
}

.customer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-meta h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.customer-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.agent-badge-mini {
    background: #EBF3FC;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.message-avatar {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
}

.message-avatar i {
    width: 100%;
    text-align: center;
}

/* Cards */
/* Cards */
.agent-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.agent-selection-grid h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.agent-grid-card {
    background: var(--bg-sidebar);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.agent-grid-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.agent-grid-card.active {
    border-color: var(--primary-color);
    background-color: #EBF3FC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.grid-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.grid-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #000000;
}

.grid-info p {
    font-size: 0.75rem;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.grid-info .tag {
    font-size: 0.7rem;
    background: #f1f1f1;
    padding: 2px 8px;
    border-radius: 10px;
    color: #000000;
    font-weight: 500;
}

.agent-profile-card,
.recent-list-container {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.avatar-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

/* Recent Conversations Cards */
.recent-calls-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

.conv-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.conv-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.conv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    position: relative;
    background: #ffffff;
    /* Keeping card background white */
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-initial {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.details-main {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.name-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.name-status h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: #e1fdf4;
    color: #0b8a6a;
}

.status-badge.completed {
    background: #e1fdf4;
    color: #0b8a6a;
}

.status-badge.failed {
    background: #fee2e2;
    color: #dc2626;
}

.status-badge.in_progress {
    background: #ebf3fc;
    color: #0056D2;
}

.sub-details {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: #666666;
}

.sub-details i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.agent-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.bot-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.timestamp {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 600;
}

.view-conv-btn {
    width: 100%;
    padding: 0.75rem;
    background: #f8fbff;
    border: none;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.2s;
}

.view-conv-btn:hover {
    background: #ebf3fc;
}

.view-conv-btn i {
    transition: transform 0.3s ease;
}

.view-conv-btn.active i {
    transform: rotate(180deg);
}

/* Conversation Body */
.conv-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fafafa;
}

.conv-body.active {
    max-height: 500px;
    overflow-y: auto;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.chat-history {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 90%;
}

.bubble-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.bot-message .bubble-icon {
    background: #ebf3fc;
    color: var(--primary-color);
}

.user-message .bubble-icon {
    background: #f1f5f9;
    color: #475569;
}

.bubble-content {
    background: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bot-message .bubble-content {
    background: #ffffff;
    border-left: 3px solid var(--primary-color);
}

.user-message .bubble-content {
    background: #f8fafc;
}

.loading-state {
    padding: 3rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* --- Waiting State UI --- */
.transcript-container {
    position: relative;
    /* Ensure relative positioning for absolute children if needed */
}

.waiting-state {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    /* Clean White Theme */
    color: var(--text-primary);
    text-align: center;
    z-index: 5;
}

.animation-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
    animation: ripple-effect 3s infinite linear;
    opacity: 0;
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 1s;
}

.ring-3 {
    animation-delay: 2s;
}

@keyframes ripple-effect {
    0% {
        transform: scale(0.5);
        opacity: 0;
        border-width: 4px;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
        border-width: 0px;
    }
}

.waiting-state h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--text-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-dots {
    display: flex;
    gap: 8px;
}

.dot-loader {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3b82f6;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot-loader:nth-child(1) {
    animation-delay: -0.32s;
    background-color: #3b82f6;
}

.dot-loader:nth-child(2) {
    animation-delay: -0.16s;
    background-color: #8b5cf6;
}

.dot-loader:nth-child(3) {
    animation-delay: 0s;
    background-color: #10b981;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Active Call Layout */
.active-call-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: white;
}

.hidden {
    display: none !important;
}