:root {
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --success: #10b981;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card h2 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #e2e8f0;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.id-display, .id-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

input[type="text"], select {
    flex: 1;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, select:focus {
    border-color: var(--primary);
}

button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

button#copy-btn {
    background: rgba(255,255,255,0.1);
    color: white;
}

button#copy-btn:hover {
    background: rgba(255,255,255,0.2);
}

.primary-btn {
    background: var(--primary);
    color: white;
    flex-shrink: 0;
}

.primary-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

.danger-btn {
    background: var(--danger);
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

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

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

.success-btn:hover {
    background: #059669;
}

.incoming-call-panel {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.1);
    text-align: center;
}

.ringing-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.ringing-icon i {
    display: inline-block;
    animation: ring-vibrate 1.2s infinite ease-in-out;
}

.incoming-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.incoming-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-buttons button {
    flex: 1;
    justify-content: center;
}

.languages {
    display: flex;
    gap: 1rem;
}

.lang-group {
    flex: 1;
}

.hidden {
    display: none !important;
}

.active-call-panel {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    justify-content: center;
    font-weight: 600;
    color: var(--success);
}

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

.subtitles-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subtitle {
    border-left: 3px solid;
    padding-left: 1rem;
}

.my-subtitle {
    border-color: var(--text-muted);
}

.remote-subtitle {
    border-color: var(--primary);
}

.subtitle .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}

.subtitle p {
    font-size: 1.2rem;
    line-height: 1.4;
}

.remote-subtitle p {
    color: #60a5fa;
    font-weight: 600;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ring-vibrate {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(15deg) scale(1.1); }
    20% { transform: rotate(-15deg) scale(1.1); }
    30% { transform: rotate(15deg) scale(1.1); }
    40% { transform: rotate(-15deg) scale(1.1); }
    50% { transform: rotate(0) scale(1); }
    100% { transform: rotate(0) scale(1); }
}

@media (max-width: 600px) {
    .languages { flex-direction: column; }
    header h1 { font-size: 2rem; }
}

/* AUTH & PROFILE STYLES */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.logo-section {
    text-align: left;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.user-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

#user-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.badge {
    font-size: 0.7rem;
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-icon {
    background: transparent;
    padding: 5px;
    color: var(--text-muted);
}

.btn-icon:hover {
    color: var(--danger);
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.18) 0%, rgba(124, 58, 237, 0.08) 40%, transparent 70%),
        #030712;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

/* Dot-matrix texture overlay on the landing screen */
.overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.auth-card {
    max-width: 520px;
    width: 100%;
    background: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px !important;
    padding: 2.5rem 2rem !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(37, 99, 235, 0.05);
    text-align: center;
    animation: zoomIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-headline {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -1px;
    margin-bottom: 12px;
    border-bottom: none !important; /* Overriding default card h2 border */
    padding-bottom: 0 !important;
}

.auth-headline .highlight-blue {
    background: linear-gradient(to right, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.auth-subheadline {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.google-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    width: 100%;
    justify-content: center;
    margin: 10px 0 30px 0 !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.35),
        0 0 15px rgba(255, 255, 255, 0.05);
}

.google-btn img {
    width: 20px;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.auth-card .price-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(10px);
}
.auth-card .price-card.featured {
    background: rgba(59, 130, 246, 0.03) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
}
.auth-card .price-card.featured:hover {
    background: rgba(59, 130, 246, 0.08) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
}

/* --- DASHBOARD LAYOUT --- */
.dashboard-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #050816;
    position: relative;
}

/* SIDEBAR */
.sidebar {
    width: 350px;
    background: rgba(10, 18, 35, 0.95);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.group-meeting-section a:hover {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.08) !important;
    transform: translateY(-1px);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-header h1 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.add-friend-section {
    padding: 15px;
}

.search-box {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-size: 0.85rem;
}

.friends-list-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.friends-list-container h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.friend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.friend-item:hover {
    background: rgba(255,255,255,0.05);
}

.friend-item.active {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.friend-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.friend-item .friend-info {
    flex: 1;
}

.friend-item .friend-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.friend-item .friend-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CHAT AREA */
.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: 
        radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 75%),
        radial-gradient(circle at 15% 85%, rgba(124, 58, 237, 0.16) 0%, rgba(124, 58, 237, 0.03) 45%, transparent 70%),
        radial-gradient(circle at 40% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        #050816;
    position: relative;
    overflow: hidden;
}

/* Premium dot-matrix background pattern (Linear/OpenAI style) */
.chat-area::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.chat-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.chat-placeholder h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.chat-placeholder p {
    color: var(--text-muted);
    max-width: 400px;
}

.active-chat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.chat-header-bar {
    padding: 15px 25px;
    background: rgba(10, 18, 35, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.active-friend-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.active-friend-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.active-friend-info h3 {
    font-size: 1rem;
    margin: 0;
}

.chat-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-languages {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-languages:hover {
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
    transform: translateY(-1px);
}

.mini-languages select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    padding: 2px 4px;
    transition: all 0.2s ease;
}

.mini-languages select option {
    background: #0b0f19;
    color: #fff;
    font-weight: 600;
}

.mini-languages i {
    color: #60a5fa !important;
    font-size: 0.85rem;
    transition: transform 0.4s ease;
}

.mini-languages:hover i {
    transform: rotate(180deg);
}

.mini-select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 0.75rem;
    padding: 5px;
    border-radius: 8px;
}

/* CHAT MESSAGES BODY */
.chat-messages-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.chat-footer-input {
    padding: 20px 25px;
    background: rgba(10, 18, 35, 0.6);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    gap: 15px;
}

.chat-footer-input input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    outline: none;
    transition: 0.2s;
}

.chat-footer-input input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

/* CALL OVERLAY PANEL */
.call-overlay-panel {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(10, 18, 35, 0.95);
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translate(-50%, -20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.subtitles-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.subtitle-bubble {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.local-bubble {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #ccc;
}

.remote-bubble {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--primary);
}

.call-pulse-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
}

/* OVERLAY ESTILO GLASS */
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PRICING PREVIEW */
.pricing-preview {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.price-card {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-card:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.08);
}

.price-card.featured {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.price-card.featured:hover {
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}


.price-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-card p {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.price-card ul {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: left;
}

.price-card ul li::before {
    content: "✓";
    margin-right: 5px;
    color: var(--success);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Chat Traduzido Styles */
.call-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .call-content-grid {
        grid-template-columns: 1fr;
    }
}

.chat-container {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 350px;
}

.chat-header {
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-msg {
    position: relative;
    max-width: 65%;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.55;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.chat-msg.local {
    align-self: flex-end;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-msg.remote {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    border-bottom-left-radius: 4px;
}

.chat-msg .translated {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2px;
}

.chat-msg .original {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Edit & Delete Options popover */
.msg-options {
    position: absolute;
    top: -14px;
    right: 8px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2px 6px;
    display: flex;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 5;
    transform: translateY(4px);
}

.chat-msg:hover .msg-options,
.chat-msg.active .msg-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.msg-opt-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.75rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.msg-opt-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.msg-opt-btn.delete-btn:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.15);
}

/* Editing Container inside bubble */
.edit-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    min-width: 180px;
}

.edit-input {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 8px 10px !important;
    color: white !important;
    font-size: 0.85rem !important;
    width: 100% !important;
    outline: none !important;
    resize: none !important;
    font-family: inherit !important;
    line-height: 1.4 !important;
    min-height: 36px !important;
    max-height: 200px !important;
    overflow-y: auto !important;
}

.edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.edit-actions button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    width: auto;
    height: auto;
}

.edit-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.edit-actions .edit-confirm-btn {
    background: var(--success);
}

.edit-actions .edit-confirm-btn:hover {
    background: #059669;
}

.chat-footer-input {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 10px;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 16px 16px;
}

.chat-footer-input input[type="text"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 10px 16px !important;
    color: white !important;
    font-size: 0.88rem !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

.chat-footer-input input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.chat-footer-input .btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-footer-input .btn-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: scale(1.08);
}

.chat-footer-input .btn-icon.primary {
    background: var(--primary);
    color: white;
    border: none;
}

.chat-footer-input .btn-icon.primary:hover {
    background: #4f46e5;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

/* Banner de Reunião Ativa */
.active-meeting-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(16, 185, 129, 0.3); }
    50% { border-color: rgba(16, 185, 129, 0.6); }
    100% { border-color: rgba(16, 185, 129, 0.3); }
}

/* --- ESTILOS DE REUNIÃO INTEGRADOS --- */
.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.participant-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
}
.participant-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
.participant-card.me {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}
.participant-name {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.participant-status {
    font-size: 0.8rem;
    color: #aaa;
}
.participant-transcript {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    min-height: 60px;
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.4;
    overflow-y: auto;
}
.host-badge {
    background: #ffd700;
    color: #000;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 5px;
}

/* =====================================================================
   --- RESPONSIVIDADE COMPLETA PARA CELULAR (SISTEMA MOBILE-NATIVO) ---
   ===================================================================== */
@media (max-width: 768px) {
    body {
        align-items: stretch; /* Ocupa a tela inteira */
    }

    .dashboard-container {
        flex-direction: column;
        height: 100vh;
        width: 100vw;
    }

    /* Ocultar e mostrar sidebar/chat dinamicamente no celular */
    .sidebar {
        width: 100% !important;
        height: 100% !important;
        flex: 1 !important;
        display: flex !important;
    }

    .chat-area {
        width: 100% !important;
        height: 100% !important;
        flex: 1 !important;
        display: none !important;
    }

    /* Quando a classe .show-chat estiver ativa na dashboard-container */
    .dashboard-container.show-chat .sidebar {
        display: none !important;
    }

    .dashboard-container.show-chat .chat-area {
        display: flex !important;
    }

    /* Mostrar botões de voltar */
    .mobile-only-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Ajustes da barra de cabeçalho do chat */
    .chat-header-bar {
        padding: 10px 15px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .active-friend-info {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 8px;
    }

    .chat-actions {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: wrap;
    }

    .mini-languages {
        flex: 1;
        justify-content: space-around;
        padding: 6px 8px !important;
    }

    .mini-select, .call-action-btn {
        flex: 1;
        justify-content: center;
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
    }

    /* Ajuste da entrada de texto e rodapé do chat */
    .chat-footer-input {
        padding: 12px 15px !important;
        gap: 10px !important;
    }

    .chat-footer-input input {
        padding: 10px 15px !important;
        font-size: 0.9rem;
    }

    .chat-messages-body {
        padding: 15px !important;
    }

    /* Ajuste dos overlays de chamada e de login */
    .call-overlay-panel {
        width: 94% !important;
        top: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .auth-card {
        width: 95% !important;
        padding: 20px 15px !important;
    }

    .pricing-preview {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    /* Ajuste da grade de participantes da Reunião */
    .participants-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================
   TEMA CLARO E AJUSTES DE CONFIGURAÇÕES (MODERNO E SUTIL)
   ========================================================== */
body.light-theme {
    --bg-color: #f4f7fb;
    --card-bg: rgba(255, 255, 255, 0.75);
    --text-main: #0f172a;
    --text-muted: #475569; /* Contraste aumentado! */
    --glass-border: rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #f4f7fb 0%, #eef2f9 50%, #f6f8fc 100%) !important;
}

body.light-theme .dashboard-container {
    background: linear-gradient(135deg, #f4f7fb 0%, #eef2f9 50%, #f6f8fc 100%) !important;
}

/* 2. Sidebar com mais identidade (Clara, com glassmorphism leve e sombra sutil) */
body.light-theme .sidebar {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 10px 0 45px rgba(15, 23, 42, 0.04) !important;
}

body.light-theme .sidebar-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .search-box {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .search-box input {
    color: #0f172a !important;
}

body.light-theme .search-box input::placeholder {
    color: #475569 !important;
}

body.light-theme .group-meeting-section a {
    border: 1px dashed rgba(0,0,0,0.1) !important;
    background: rgba(0,0,0,0.01) !important;
    color: #0f172a !important;
}

body.light-theme .group-meeting-section a:hover {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.04) !important;
}

/* AI BRANDING ACCENTS: Holographic glowing AI logo mark in Light Theme */
body.light-theme .logo-section h1 i {
    background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.5)) !important;
}

/* 3. Área central de chat imersiva (Gradientes radiais suaves e micro-dots) */
body.light-theme .chat-area {
    background: 
        radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 50%, transparent 75%),
        radial-gradient(circle at 15% 85%, rgba(167, 139, 250, 0.06) 0%, rgba(167, 139, 250, 0.01) 45%, transparent 70%),
        radial-gradient(circle at 40% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 60%),
        #f6f8fc !important;
    position: relative;
}

body.light-theme .chat-area::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* 1. Barra Superior Transflutuante (Blur alto, transparência e sombra soft) */
body.light-theme .chat-header-bar {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03) !important;
}

/* Confirmação de Leitura e Status */
body.light-theme .msg-status-receipt {
    color: #475569 !important;
    opacity: 0.9 !important;
    font-weight: 600 !important;
}

body.light-theme #chat-friend-status.status-offline {
    color: #64748b !important;
}

body.light-theme #chat-friend-status.status-online {
    color: #10b981 !important;
}

body.light-theme #chat-friend-status span i.fa-circle {
    text-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

/* 4. Campo de Entrada Premium (Glassmorphism, sombra interna e botão de envio dinâmico) */
body.light-theme .chat-footer-input {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 20px 25px !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .chat-footer-input input[type="text"] {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 30px !important;
    color: #0f172a !important;
    padding: 12px 20px !important;
    box-shadow: inset 0 2px 6px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.light-theme .chat-footer-input input[type="text"]::placeholder {
    color: #475569 !important;
}

body.light-theme .chat-footer-input input[type="text"]:focus {
    background: #ffffff !important;
    border-color: #3b82f6 !important;
    box-shadow: 
        inset 0 2px 6px rgba(15, 23, 42, 0.02),
        0 0 15px rgba(59, 130, 246, 0.15) !important;
}

body.light-theme .chat-footer-input .btn-icon {
    color: #475569 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

body.light-theme .chat-footer-input .btn-icon:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #0f172a !important;
}

body.light-theme #send-chat-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.light-theme #send-chat-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35) !important;
}

/* 4. Balões de Mensagem (Glassmorphism sutil, mais sombra, mais padding e espaçamento) */
body.light-theme .chat-messages-body {
    gap: 22px !important;
    padding: 30px !important;
}

/* 3. Sombras Soft UI / Floating Cards nas mensagens */
body.light-theme .chat-msg {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
    padding: 12px 18px !important;
    margin-bottom: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* 2. Balões azuis refinados (Azul Royal/Indigo desaturado elegante com glow suave) */
body.light-theme .chat-msg.local {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(79, 70, 229, 0.05) !important;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.1),
        0 2px 6px rgba(79, 70, 229, 0.05) !important;
}

body.light-theme .chat-msg.local .text {
    color: #ffffff !important;
}

body.light-theme .chat-msg.remote {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    color: #0f172a !important;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

body.light-theme .chat-msg.remote .translated {
    color: #0f172a !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

body.light-theme .chat-msg.remote .original {
    color: #475569 !important;
}

body.light-theme .chat-msg.remote .play-translation-btn {
    background: rgba(0, 0, 0, 0.04) !important;
    color: #3b82f6 !important;
}

body.light-theme .chat-msg.remote .play-translation-btn:hover {
    background: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .friend-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.02) !important;
    transition: all 0.25s ease !important;
}

body.light-theme .friend-item:hover {
    background: rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .friend-item.active {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05) !important;
}

body.light-theme .friend-name {
    color: #0f172a !important;
}

body.light-theme .no-friends {
    color: #475569 !important;
}

body.light-theme .btn-icon {
    color: #475569 !important;
}

body.light-theme .btn-icon:hover {
    background: rgba(0, 0, 0, 0.04) !important;
}

body.light-theme .chat-msg.local .original,
body.light-theme .chat-msg.local .original-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.light-theme .chat-msg.local .translated,
body.light-theme .chat-msg.local .translated-text {
    color: #ffffff !important;
}

body.light-theme .chat-msg.remote .original-text {
    color: #475569 !important;
}

body.light-theme .chat-msg.remote .translated-text {
    color: #0f172a !important;
}

/* AI BRANDING ACCENTS: Holographic glowing mini translator badge */
body.light-theme .mini-languages {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(167, 139, 250, 0.08) 100%) !important;
    border: 1px solid rgba(167, 139, 250, 0.25) !important;
    box-shadow: 
        0 0 15px rgba(167, 139, 250, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.8) !important;
    position: relative !important;
}

body.light-theme .mini-languages select {
    color: #0f172a !important;
}

body.light-theme .mini-languages select option {
    background: #ffffff !important;
    color: #0f172a !important;
}

body.light-theme .mini-select {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #0f172a !important;
}

body.light-theme .mini-select option {
    background: #ffffff !important;
    color: #0f172a !important;
}

body.light-theme .friends-list-container h3 {
    color: #475569 !important;
}

body.light-theme .search-friend-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
}

body.light-theme .search-friend-box input {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #0f172a !important;
}

body.light-theme .chat-placeholder h2 {
    color: #0f172a !important;
}

body.light-theme .chat-placeholder p {
    color: #475569 !important;
}

/* AI BRANDING ACCENTS: Pulsing glowing placeholder icon in Light Theme */
body.light-theme .chat-placeholder i {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(167, 139, 250, 0.15) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.25)) !important;
    animation: pulseAI 4s ease-in-out infinite alternate !important;
}

@keyframes pulseAI {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.2)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4)); }
}

/* 5. Botões de Chamada Premium (Com gradientes, glow sutil e hover animado) */
body.light-theme #connect-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.light-theme #connect-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45) !important;
}

body.light-theme #video-connect-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.light-theme #video-connect-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45) !important;
}

/* 6. Aumento geral de contraste e tipografia no claro */
body.light-theme .user-info #user-name {
    color: #0f172a !important;
}

/* 3. Soft UI shadows on the profile card */
body.light-theme .user-profile {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03) !important;
}

body.light-theme .user-profile #user-plan {
    background: #475569 !important;
    color: #ffffff !important;
}

/* --- TEMA CLARO PARA PAINÉIS DE REUNIÃO --- */
body.light-theme #room-setup-panel {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-theme #room-setup-title {
    color: #0f172a !important;
}
body.light-theme #room-setup-panel label {
    color: #475569 !important;
}
body.light-theme #room-setup-panel input[type="text"],
body.light-theme #room-setup-panel select {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #0f172a !important;
}
body.light-theme #room-setup-panel input[type="text"]::placeholder {
    color: #94a3b8 !important;
}
body.light-theme #room-host-setup-box,
body.light-theme #room-guest-setup-box {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}
body.light-theme #room-host-setup-box h3,
body.light-theme #room-guest-setup-box h3 {
    color: #0f172a !important;
}
body.light-theme #room-host-setup-box p,
body.light-theme #room-guest-setup-box p {
    color: #475569 !important;
}
body.light-theme #room-setup-panel select option {
    background: #ffffff !important;
    color: #0f172a !important;
}
body.light-theme #room-active-panel {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-theme #room-active-panel h2 {
    color: #0f172a !important;
}
body.light-theme #room-active-panel p {
    color: #475569 !important;
}
body.light-theme .participant-card {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
body.light-theme .participant-card.me {
    background: rgba(59, 130, 246, 0.05) !important;
    border-color: rgba(59, 130, 246, 0.15) !important;
}
body.light-theme .participant-name {
    color: #0f172a !important;
}
body.light-theme .participant-status {
    color: #475569 !important;
}
body.light-theme .participant-transcript {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #0f172a !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
