/* ═══════════════════════════════════════════
   Orho.Meet — Brand Identity UI
   Brandguide v2.0 by Flip Comunicação

   Amarelo:        #f4bb03
   Preto Profundo: #1a1a1a
   Off-White:      #fef9f2
   Tipografia:     Sora
   ═══════════════════════════════════════════ */

:root {
    --orho-yellow: #f4bb03;
    --orho-yellow-hover: #d9a503;
    --orho-yellow-glow: rgba(244, 187, 3, 0.25);
    --orho-black: #1a1a1a;
    --orho-black-light: #242424;
    --orho-black-lighter: #2e2e2e;
    --orho-offwhite: #fef9f2;
    --orho-offwhite-dim: rgba(254, 249, 242, 0.7);
    --orho-offwhite-muted: rgba(254, 249, 242, 0.45);
    --orho-danger: #e84335;
    --orho-danger-hover: #cc3628;
    --orho-radius: 12px;
    --orho-radius-lg: 16px;
    --orho-radius-pill: 24px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ── Base ── */
.call-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    background: var(--orho-black);
    color: var(--orho-offwhite);
    font-family: 'Sora', sans-serif;
    overflow: hidden;
}

/* ══════════════════════════════════════
   LOBBY (Permission + Pre-join)
   ══════════════════════════════════════ */
.lobby {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--orho-black);
    animation: lobbyFadeIn 0.5s ease-out;
}

@keyframes lobbyFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.lobby-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 480px;
    width: 100%;
}

.lobby-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.5px;
    color: var(--orho-offwhite);
}

.lobby-dot {
    color: var(--orho-yellow);
}

.lobby-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--orho-offwhite-muted);
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* Preview */
.lobby-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--orho-radius-lg);
    overflow: hidden;
    background: var(--orho-black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(254, 249, 242, 0.06);
}

.lobby-preview--empty {
    background: var(--orho-black-light);
}

.lobby-preview--cam-off {
    background: var(--orho-black-light);
}

.lobby-icon {
    font-size: 4rem;
    color: var(--orho-offwhite-muted);
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.preview-video.hidden {
    opacity: 0;
    position: absolute;
}

.preview-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

/* Avatar */
.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orho-black-lighter);
    border: 2px solid rgba(244, 187, 3, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle .material-symbols-rounded {
    font-size: 48px;
    color: var(--orho-offwhite-dim);
}

.avatar-circle--small {
    width: 56px;
    height: 56px;
}

.avatar-circle--small .material-symbols-rounded {
    font-size: 32px;
}

/* Circle toggle buttons (lobby) */
.btn-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(46, 46, 46, 0.85);
    backdrop-filter: blur(8px);
    color: var(--orho-offwhite);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
}

.btn-circle:hover {
    background: rgba(60, 60, 60, 0.9);
    transform: scale(1.08);
}

.btn-circle--off {
    background: rgba(232, 67, 53, 0.9);
}

.btn-circle--off:hover {
    background: rgba(204, 54, 40, 0.95);
}

/* Primary action button */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    border: none;
    border-radius: var(--orho-radius-pill);
    background: var(--orho-yellow);
    color: var(--orho-black);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    min-height: 48px;
}

.btn-primary:hover {
    background: var(--orho-yellow-hover);
    box-shadow: 0 4px 20px var(--orho-yellow-glow);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-join-call {
    background: var(--orho-yellow);
    color: var(--orho-black);
}

.btn-join-call:hover {
    background: var(--orho-yellow-hover);
    box-shadow: 0 4px 20px var(--orho-yellow-glow);
}

/* Error */
.lobby-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(232, 67, 53, 0.12);
    border: 1px solid rgba(232, 67, 53, 0.25);
    border-radius: var(--orho-radius);
    color: #f28b82;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.4;
    width: 100%;
}

.lobby-error .material-symbols-rounded {
    font-size: 20px;
    flex-shrink: 0;
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(26, 26, 26, 0.3);
    border-top-color: var(--orho-black);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════
   IN-CALL LAYOUT
   ══════════════════════════════════════ */
.incall-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Top bar ── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--orho-black);
    border-bottom: 1px solid rgba(254, 249, 242, 0.06);
    min-height: 56px;
    z-index: 10;
}

.topbar-left,
.topbar-right {
    flex: 1;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.topbar-right {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.topbar-logo {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--orho-offwhite);
    flex-shrink: 0;
}

.topbar-presenting {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(244, 187, 3, 0.12);
    border: 1px solid rgba(244, 187, 3, 0.22);
    color: var(--orho-yellow);
    font-size: 0.75rem;
    font-weight: 500;
}

.topbar-presenting .material-symbols-rounded {
    font-size: 16px;
}

.topbar-participants {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 48px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(254, 249, 242, 0.06);
    border-radius: 999px;
    background: var(--orho-black-lighter);
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    color: var(--orho-offwhite-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.topbar-participants .material-symbols-rounded {
    font-size: 20px;
    color: var(--orho-yellow);
}

.topbar-participants:hover {
    background: #363636;
    border-color: rgba(254, 249, 242, 0.12);
    color: var(--orho-offwhite);
}

/* ── Participants panel ── */
.participants-panel {
    position: absolute;
    top: 68px;
    right: 16px;
    bottom: 84px;
    width: min(360px, calc(100vw - 32px));
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 18px;
    background: var(--orho-black-light);
    border: 1px solid rgba(254, 249, 242, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    animation: participantsPanelIn 0.18s ease-out;
}

@keyframes participantsPanelIn {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.participants-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.participants-panel-header h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.participants-panel-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--orho-offwhite-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.participants-panel-close:hover {
    background: rgba(254, 249, 242, 0.08);
    color: var(--orho-offwhite);
}

.participants-panel-close .material-symbols-rounded {
    font-size: 22px;
}

.participants-panel-section {
    min-height: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(254, 249, 242, 0.1);
    border-radius: var(--orho-radius);
    overflow: hidden;
}

.participants-panel-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(254, 249, 242, 0.08);
    color: var(--orho-offwhite-dim);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.participants-list {
    min-height: 0;
    overflow-y: auto;
    padding: 8px 0;
}

.participant-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 8px 14px;
}

.participant-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #5d3aa0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
}

.participant-details {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.participant-role {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
    color: var(--orho-offwhite-muted);
}

.participant-status {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 24px;
    justify-content: flex-end;
}

.participant-status-icon {
    font-size: 18px !important;
    color: var(--orho-offwhite-muted);
}

.participant-status-icon--off {
    color: #f28b82;
}

/* ── Video area ── */
.video-area {
    flex: 1;
    padding: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-area--presenting {
    align-items: stretch;
}

.video-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-rows: 1fr;
    gap: 8px;
    max-width: 1600px;
}

.video-grid--solo {
    grid-template-columns: minmax(0, 1fr);
}

.video-grid--one-on-one {
    position: relative;
    display: block;
    max-width: none;
}

.video-grid--one-on-one .video-tile--remote {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-grid--one-on-one .video-tile--local {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 5;
    width: clamp(176px, 22vw, 292px);
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(254, 249, 242, 0.18);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}

.video-grid--group {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    grid-auto-rows: minmax(180px, 1fr);
    align-items: stretch;
}

.video-grid--group .video-tile {
    min-height: 180px;
}

.video-grid--screen-share {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 24vw, 340px);
    gap: 12px;
    max-width: none;
    align-items: stretch;
}

.screen-stage {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-auto-rows: minmax(0, 1fr);
    gap: 8px;
}

.screen-stage .tile--screen {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 1px solid rgba(254, 249, 242, 0.08);
    background: #050505;
}

.participant-rail {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding-right: 2px;
}

.participant-rail .video-tile {
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    min-height: 0;
}

.participant-rail .tile-overlay {
    padding: 7px 10px;
}

.participant-rail .tile-name {
    font-size: 0.72rem;
}

.participant-rail .avatar-circle--small {
    width: 42px;
    height: 42px;
}

.participant-rail .avatar-circle--small .material-symbols-rounded {
    font-size: 26px;
}

/* ── Video tile ── */
.video-tile,
.video-grid video:not(.tile-video),
.video-grid .remote-video {
    position: relative;
    border-radius: var(--orho-radius);
    overflow: hidden;
    background: var(--orho-black-lighter);
}

.video-grid video:not(.tile-video),
.video-grid .remote-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-tile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.tile-avatar {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orho-black-lighter);
    z-index: 1;
}


/* ── Controls bar ── */
.controls-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--orho-black);
    border-top: 1px solid rgba(254, 249, 242, 0.06);
    z-index: 10;
}

.controls-group {
    display: flex;
    gap: 12px;
}

.btn-control {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--orho-black-lighter);
    color: var(--orho-offwhite);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
}

.btn-control .material-symbols-rounded {
    font-size: 24px;
}

.btn-control:hover {
    background: #3a3a3a;
    transform: scale(1.08);
}

.btn-control--off {
    background: var(--orho-danger);
}

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

.btn-control--active {
    background: var(--orho-yellow);
    color: var(--orho-black);
    box-shadow: 0 0 0 3px rgba(244, 187, 3, 0.16);
}

.btn-control--active:hover {
    background: var(--orho-yellow-hover);
}

.btn-hangup {
    width: 64px;
    height: 52px;
    border-radius: 26px;
    border: none;
    background: var(--orho-danger);
    color: var(--orho-offwhite);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-left: 12px;
}

.btn-hangup .material-symbols-rounded {
    font-size: 24px;
}

.btn-hangup:hover {
    background: var(--orho-danger-hover);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(232, 67, 53, 0.35);
}

/* ══════════════════════════════════════
   SPLIT BUTTON (toggle + dropdown arrow)
   ══════════════════════════════════════ */
.split-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.split-btn-arrow {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--orho-black);
    border-radius: 50%;
    background: rgba(70, 70, 70, 0.95);
    color: var(--orho-offwhite-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.15s, transform 0.15s;
    z-index: 2;
}

.split-btn-arrow .material-symbols-rounded {
    font-size: 14px;
}

.split-btn-arrow:hover {
    background: rgba(90, 90, 90, 0.95);
    color: var(--orho-offwhite);
    transform: scale(1.15);
}

.split-btn-arrow--off {
    background: rgba(200, 50, 40, 0.85);
}

.split-btn-arrow--off:hover {
    background: rgba(180, 40, 30, 0.95);
}

/* In-call variant (larger) */
.split-btn-arrow--control {
    width: 22px;
    height: 22px;
    background: rgba(70, 70, 70, 0.95);
    border-color: var(--orho-black);
}

.split-btn-arrow--control:hover {
    background: #3a3a3a;
}

.split-btn-arrow--control.split-btn-arrow--off {
    background: var(--orho-danger-hover);
}

.split-btn-arrow--control.split-btn-arrow--off:hover {
    background: #b02e22;
}

/* ══════════════════════════════════════
   DEVICE SELECTOR DROPDOWN
   ══════════════════════════════════════ */
.device-selector {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--orho-black-light);
    border: 1px solid rgba(254, 249, 242, 0.08);
    border-radius: var(--orho-radius);
    padding: 8px 0;
    min-width: 260px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 30;
    animation: selectorSlideUp 0.2s ease-out;
}

.device-selector--incall {
    bottom: calc(100% + 8px);
}

/* ══════════════════════════════════════
   TILE OVERLAY (nome + ícones sobre vídeo)
   ══════════════════════════════════════ */
.tile-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    z-index: 2;
    gap: 8px;
}

.tile-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.tile-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: flex !important;
    gap: 6px;
}

.tile-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(8px);
    color: var(--orho-offwhite-dim);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    line-height: 1;
    border: 1px solid rgba(254, 249, 242, 0.08);
}

.tile-badge.material-symbols-rounded {
    display: inline-grid;
    place-items: center;
    line-height: 1;
}

.tile-badge--off {
    color: #f28b82;
}

.tile-badge--screen {
    color: var(--orho-yellow);
}

/* Active speaker highlight */
.tile--speaking {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.12);
    border: 2px solid rgba(46, 204, 113, 0.6);
}

/* Screen-share tile: span full width and prefer contain */
.tile--screen {
    grid-column: 1 / -1;
    height: 420px;
}
.tile--screen .tile-video {
    object-fit: contain;
    background: #000;
}

/* ══════════════════════════════════════
   NAME ENTRY INPUT
   ══════════════════════════════════════ */
.name-input-container {
    width: 100%;
}

.name-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    background: var(--orho-black-lighter);
    border: 1px solid rgba(254, 249, 242, 0.12);
    border-radius: var(--orho-radius);
    color: var(--orho-offwhite);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.name-input:focus {
    border-color: var(--orho-yellow);
    box-shadow: 0 0 0 3px var(--orho-yellow-glow);
}

.name-input::placeholder {
    color: var(--orho-offwhite-muted);
}

/* Inline link button (e.g. "Alterar" nome) */
.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Sora', sans-serif;
    font-size: inherit;
    font-weight: 500;
    color: var(--orho-yellow);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.btn-link:hover {
    color: var(--orho-yellow-hover);
}

@keyframes selectorSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.device-selector-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--orho-offwhite-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.device-selector-header .material-symbols-rounded {
    font-size: 18px;
    color: var(--orho-yellow);
}

.device-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    color: var(--orho-offwhite-dim);
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: background 0.15s;
    text-align: left;
}

.device-option:hover {
    background: rgba(254, 249, 242, 0.06);
}

.device-option--active {
    color: var(--orho-yellow);
}

.device-option .material-symbols-rounded {
    font-size: 20px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 600px) {
    .lobby {
        padding: 1rem;
    }

    .lobby-title {
        font-size: 1.4rem;
    }

    .lobby-preview {
        aspect-ratio: 16/12;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-grid--group {
        align-content: center;
        grid-auto-rows: auto;
    }

    .video-grid--group .video-tile,
    .video-grid--solo .video-tile {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .video-grid--one-on-one .video-tile--local {
        right: 12px;
        bottom: 12px;
        width: min(42vw, 172px);
    }

    .video-grid--screen-share {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) 96px;
        gap: 8px;
    }

    .participant-rail {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 2px;
    }

    .participant-rail .video-tile {
        flex: 0 0 142px;
        width: 142px;
        height: 80px;
    }

    .topbar-presenting {
        display: none;
    }

    .participants-panel {
        top: 58px;
        right: 10px;
        bottom: 72px;
        width: calc(100vw - 20px);
        padding: 16px;
    }

    .btn-control {
        width: 46px;
        height: 46px;
    }

    .btn-hangup {
        width: 56px;
        height: 46px;
    }

    .topbar {
        padding: 8px 12px;
    }

    .controls-bar {
        padding: 12px 16px;
    }
}
