:root {
    --v1-yellow: #f4db00;
    --v1-amber: #ffad00;
    --v1-bg: #080909;
    --v1-panel: rgba(18, 19, 20, 0.9);
    --v1-panel-strong: #121314;
    --v1-line: rgba(255, 255, 255, 0.09);
    --v1-copy: #f6f6f4;
    --v1-muted: #9a9b9d;
}

.v1-page {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--v1-bg);
    color: var(--v1-copy);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.v1-page .lk-room-name.hidden,
.v1-page .lk-status.hidden {
    display: none;
}

.v1-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 5% 0%, rgba(244, 219, 0, 0.1), transparent 28%),
        radial-gradient(circle at 95% 20%, rgba(255, 173, 0, 0.055), transparent 24%),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: auto, auto, 42px 42px, 42px 42px;
}

.v1-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 72px;
    padding: 0 clamp(20px, 4vw, 64px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    background: rgba(8, 9, 9, 0.86);
    border-bottom: 1px solid var(--v1-line);
    backdrop-filter: blur(18px);
}

.v1-brand {
    width: fit-content;
    display: flex;
    align-items: center;
}

.v1-brand img {
    width: 142px;
    height: auto;
    display: block;
}

.v1-product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e9e9e7;
}

.v1-product-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #111;
    background: linear-gradient(135deg, var(--v1-yellow), var(--v1-amber));
}

.v1-badge {
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--v1-yellow);
    background: rgba(244, 219, 0, 0.09);
    border: 1px solid rgba(244, 219, 0, 0.22);
}

.v1-top-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.v1-ready {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    color: var(--v1-muted);
}

.v1-ready span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.55);
}

.v1-home-link {
    padding: 8px 12px;
    color: #dededb;
    font-size: 0.8rem;
    border: 1px solid var(--v1-line);
    border-radius: 10px;
    transition: 0.2s ease;
}

.v1-home-link:hover {
    color: var(--v1-yellow);
    border-color: rgba(244, 219, 0, 0.3);
}

.v1-main {
    width: min(1600px, calc(100% - clamp(32px, 6vw, 96px)));
    margin: 0 auto;
    padding: clamp(34px, 5vw, 68px) 0 60px;
}

.v1-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 34px;
}

.v1-eyebrow,
.v1-section-label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v1-yellow);
}

.v1-intro h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.v1-intro h1 span {
    color: var(--v1-yellow);
}

.v1-intro p {
    max-width: 620px;
    margin-top: 14px;
    color: var(--v1-muted);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.v1-steps {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px;
    border: 1px solid var(--v1-line);
    border-radius: 14px;
    background: rgba(18, 19, 20, 0.7);
}

.v1-steps > i {
    margin: 0 8px;
    color: #48494b;
    font-size: 0.65rem;
}

.v1-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    color: #6f7072;
    font-size: 0.75rem;
    font-weight: 600;
}

.v1-step b {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.68rem;
}

.v1-step.active {
    color: #fff;
}

.v1-step.active b {
    color: #111;
    background: var(--v1-yellow);
}

.v1-workspace {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.v1-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.v1-card {
    overflow: hidden;
    background: linear-gradient(145deg, rgba(21, 22, 23, 0.94), rgba(14, 15, 16, 0.94));
    border: 1px solid var(--v1-line);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.v1-config-card {
    padding: 22px;
}

.v1-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.v1-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--v1-yellow);
    background: rgba(244, 219, 0, 0.09);
    border: 1px solid rgba(244, 219, 0, 0.18);
}

.v1-card-heading h2,
.v1-preview-header h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.v1-card-heading p {
    margin-top: 4px;
    color: var(--v1-muted);
    font-size: 0.75rem;
}

.v1-page .config-row {
    gap: 16px;
}

.v1-page .field-group label {
    margin-bottom: 7px;
    color: #c4c4c1;
    font-size: 0.76rem;
    font-weight: 600;
}

.v1-page .field-group input,
.v1-page .field-group select {
    height: 46px;
    padding: 0 14px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background-color: rgba(4, 5, 5, 0.65);
    font-size: 0.86rem;
}

.v1-input-icon > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #747577;
    font-size: 0.82rem;
}

.v1-page .v1-input-icon input {
    padding-left: 38px;
}

.v1-field-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 12px;
}

.v1-page .voice-avatar,
.v1-page .voice-preview-btn {
    width: 46px;
    height: 46px;
}

.v1-primary-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 12px;
    color: #111;
    background: linear-gradient(135deg, var(--v1-yellow), var(--v1-amber));
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(244, 219, 0, 0.14);
    transition: 0.2s ease;
}

.v1-primary-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 219, 0, 0.24);
}

.v1-primary-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.v1-script-card {
    flex: 1;
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.v1-page .script-panel-header {
    padding: 17px 18px;
    background: transparent;
}

.v1-page .script-panel-header h3 {
    margin: 0;
    font-size: 0.95rem;
}

.v1-page .btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
}

.v1-page .script-output {
    flex: 1;
    min-height: 220px;
    padding: 16px 18px;
    color: #d8d8d5;
    background: rgba(4, 5, 5, 0.55);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.65;
    outline: none;
}

.v1-page .script-output:focus {
    box-shadow: inset 0 0 0 1px rgba(244, 219, 0, 0.25);
}

.v1-script-tip {
    padding: 10px 16px;
    color: #77787a;
    font-size: 0.68rem;
    border-top: 1px solid var(--v1-line);
}

.v1-script-tip i {
    margin-right: 5px;
    color: var(--v1-yellow);
}

.v1-preview-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.v1-preview-header {
    min-height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.v1-preview-help {
    padding: 7px 10px;
    color: var(--v1-muted);
    font-size: 0.72rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--v1-line);
}

.v1-preview-help i {
    margin-right: 5px;
    color: var(--v1-yellow);
}

.v1-page .v1-browser {
    flex: 1;
    min-height: clamp(420px, 58vh, 680px);
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.v1-browser-bar {
    height: 52px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    padding: 0 16px;
    color: #636466;
    background: #171819;
    border-bottom: 1px solid var(--v1-line);
}

.v1-browser-bar > i {
    justify-self: end;
    font-size: 0.76rem;
}

.v1-browser-dots {
    display: flex;
    gap: 7px;
}

.v1-browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3b3c3e;
}

.v1-browser-dots span:first-child { background: #ff5f57; }
.v1-browser-dots span:nth-child(2) { background: #febc2e; }
.v1-browser-dots span:last-child { background: #28c840; }

.v1-address {
    width: min(480px, 100%);
    justify-self: center;
    padding: 8px 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #88898b;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    background: #0e0f10;
}

.v1-address i {
    color: #5ca871;
}

.v1-page .preview-panel.v1-browser {
    min-height: clamp(420px, 58vh, 680px);
}

.v1-page .panel-body,
.v1-page .panel-body iframe#pg-website-frame {
    min-height: clamp(380px, 54vh, 626px);
}

.v1-empty-preview {
    background:
        radial-gradient(circle at 50% 45%, rgba(244, 219, 0, 0.06), transparent 28%),
        #0d0e0f;
}

.v1-empty-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 22px;
    color: var(--v1-yellow);
    font-size: 1.5rem;
    background: rgba(244, 219, 0, 0.07);
    border: 1px solid rgba(244, 219, 0, 0.14);
}

.v1-empty-preview h3 {
    font-size: 1rem;
}

.v1-empty-preview p {
    max-width: 360px;
    color: var(--v1-muted);
    font-size: 0.78rem;
}

.v1-page .chat-fab {
    width: auto;
    height: 56px;
    right: 22px;
    bottom: 22px;
    padding: 0 18px;
    gap: 9px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    overflow: visible;
}

.v1-chat-label {
    white-space: nowrap;
}

.v1-chat-pulse {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(244, 219, 0, 0.35);
    border-radius: inherit;
    animation: v1Pulse 2s ease-out infinite;
}

@keyframes v1Pulse {
    0% { opacity: 0.7; transform: scale(0.94); }
    80%, 100% { opacity: 0; transform: scale(1.12); }
}

.v1-call-ready-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #111;
    font-size: 1.55rem;
    background: linear-gradient(135deg, var(--v1-yellow), var(--v1-amber));
    box-shadow: 0 0 36px rgba(244, 219, 0, 0.2);
}

/* Compact premium call window */
.v1-page .call-panel {
    width: min(430px, calc(100vw - 32px));
    height: min(640px, calc(100vh - 32px));
    right: 16px;
    bottom: 16px;
    border-radius: 22px;
    border: 1px solid rgba(244, 219, 0, 0.22);
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 219, 0, 0.08), transparent 30%),
        linear-gradient(160deg, rgba(22, 23, 24, 0.985), rgba(8, 9, 10, 0.99));
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.72),
        0 0 0 1px rgba(255, 255, 255, 0.035) inset,
        0 0 38px rgba(244, 219, 0, 0.07);
    backdrop-filter: blur(24px);
}

.v1-page .call-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    z-index: 3;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, transparent, var(--v1-yellow), transparent);
    opacity: 0.75;
}

.v1-page .call-panel-header {
    position: relative;
    z-index: 2;
    min-height: 72px;
    padding: 13px 15px 13px 17px;
    gap: 10px;
    background: rgba(7, 8, 9, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(18px);
}

.v1-page .call-header-info {
    gap: 4px;
    min-width: 125px;
}

.v1-page .call-header-title {
    font-size: 0.88rem;
    font-weight: 750;
}

.v1-page .call-header-title i {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    margin-right: 7px;
    border-radius: 9px;
    color: #111;
    background: linear-gradient(135deg, var(--v1-yellow), var(--v1-amber));
    box-shadow: 0 4px 12px rgba(244, 219, 0, 0.16);
}

.v1-page .call-header-connection {
    padding-left: 36px;
    font-size: 0.68rem;
}

.v1-page .call-header-actions {
    gap: 6px;
}

.v1-page .header-mic-control {
    padding: 3px;
    border-color: rgba(255, 255, 255, 0.08);
}

.v1-page .header-mic-control .mic-bars,
.v1-page .header-mic-control .mic-label {
    display: none;
}

.v1-page .header-mic-control .call-ctrl-btn {
    width: 34px;
    height: 34px;
}

.v1-page .call-action-btn {
    min-height: 36px;
    padding: 8px 12px;
    gap: 6px;
    font-size: 0.74rem;
    box-shadow: none;
}

.v1-page .call-action-btn.connect {
    box-shadow: 0 7px 18px rgba(244, 219, 0, 0.13);
}

.v1-page .call-close-btn {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    font-size: 0.88rem;
}

.v1-page .call-panel-body {
    background:
        radial-gradient(circle at 50% 15%, rgba(244, 219, 0, 0.045), transparent 35%),
        #090a0b;
}

.v1-page .call-status-block {
    max-width: 320px;
}

.v1-page .call-status-block h4 {
    font-size: 1.15rem;
}

.v1-page .call-status-block p {
    font-size: 0.82rem;
}

.v1-page .v1-call-ready-icon {
    width: 68px;
    height: 68px;
    font-size: 1.35rem;
}

.v1-page .lk-transcript-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 11px 15px;
    font-size: 0.72rem;
    background: rgba(15, 16, 17, 0.96);
    backdrop-filter: blur(12px);
}

.v1-page .lk-transcript-body {
    padding: 15px;
    gap: 11px;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 219, 0, 0.25) transparent;
}

.v1-page .lk-transcript-line {
    max-width: 88%;
    padding: 10px 13px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.48;
}

.v1-page .lk-transcript-speaker {
    font-size: 0.66rem;
}

.v1-page .lk-transcript-line.from-user {
    border-bottom-right-radius: 5px;
    box-shadow: 0 7px 18px rgba(244, 219, 0, 0.09);
}

.v1-page .lk-transcript-line.from-agent {
    border-bottom-left-radius: 5px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
}

.v1-page .status-bar {
    margin-top: 14px;
}

body.v1-page:has(.call-panel:not(.hidden)) {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    height: 100dvh;
}

.v1-page .v1-primary-btn,
.v1-page .chat-fab,
.v1-page .call-action-btn,
.v1-page .call-close-btn,
.v1-page .voice-preview-btn {
    touch-action: manipulation;
}

@media (max-width: 1180px) {
    .v1-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .v1-workspace {
        grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    }

    .v1-field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .v1-topbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 10px clamp(14px, 4vw, 24px);
        min-height: auto;
    }

    .v1-product-title {
        display: none;
    }

    .v1-main {
        width: min(100% - clamp(24px, 5vw, 40px), 760px);
        padding: clamp(20px, 4vw, 30px) 0 clamp(28px, 6vw, 40px);
    }

    .v1-intro {
        margin-bottom: 22px;
        gap: 20px;
    }

    .v1-steps {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .v1-workspace {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v1-sidebar {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .v1-script-card {
        min-height: auto;
    }

    .v1-page .script-output {
        min-height: 180px;
    }

    .v1-preview-header {
        margin-top: 4px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .v1-preview-help {
        max-width: none;
        width: 100%;
    }

    .v1-page .v1-browser {
        min-height: clamp(340px, 52vh, 520px);
    }

    .v1-page .panel-body,
    .v1-page .panel-body iframe#pg-website-frame {
        min-height: clamp(300px, 48vh, 480px);
    }
}

@media (max-width: 640px) {
    .v1-topbar {
        min-height: 56px;
        padding: 8px 14px;
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }

    .v1-brand img {
        width: 110px;
    }

    .v1-ready {
        display: none;
    }

    .v1-home-link {
        min-height: 40px;
        padding: 8px 11px;
        font-size: 0.78rem;
    }

    .v1-main {
        width: calc(100% - 28px);
        padding: 18px 0 max(28px, env(safe-area-inset-bottom));
    }

    .v1-intro h1 {
        font-size: clamp(1.65rem, 7.5vw, 2rem);
        line-height: 1.12;
    }

    .v1-intro p {
        font-size: 0.84rem;
        margin-top: 10px;
    }

    .v1-steps {
        padding: 6px;
    }

    .v1-step span,
    .v1-steps > i {
        display: none;
    }

    .v1-step {
        flex: 1;
        justify-content: center;
    }

    .v1-config-card {
        padding: 16px;
    }

    .v1-card-heading {
        margin-bottom: 16px;
    }

    .v1-card-heading h2,
    .v1-preview-header h2 {
        font-size: 0.95rem;
    }

    .v1-field-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .v1-page .field-group input,
    .v1-page .field-group select {
        height: 44px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .v1-page .voice-avatar,
    .v1-page .voice-preview-btn {
        width: 44px;
        height: 44px;
    }

    .v1-page .voice-select-row {
        flex-wrap: nowrap;
    }

    .v1-page .voice-select-row select {
        min-width: 0;
        flex: 1;
    }

    .v1-primary-btn {
        min-height: 46px;
        font-size: 0.84rem;
    }

    .v1-page .script-panel-header {
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .v1-page .script-output {
        min-height: 160px;
        padding: 14px 16px;
        font-size: 0.8rem;
    }

    .v1-script-tip {
        padding: 9px 14px;
        font-size: 0.66rem;
        line-height: 1.45;
    }

    .v1-preview-header {
        align-items: flex-start;
    }

    .v1-preview-help {
        font-size: 0.7rem;
        line-height: 1.45;
    }

    .v1-browser-bar {
        grid-template-columns: 52px 1fr 24px;
        height: 46px;
        padding: 0 10px;
    }

    .v1-address {
        padding: 6px 8px;
        font-size: 0.66rem;
    }

    .v1-address span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .v1-page .v1-browser {
        min-height: clamp(300px, 46vh, 420px);
        border-radius: 14px;
    }

    .v1-page .panel-body,
    .v1-page .panel-body iframe#pg-website-frame {
        min-height: clamp(260px, 42vh, 380px);
    }

    .v1-empty-preview {
        padding: 24px 20px;
    }

    .v1-empty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .v1-empty-preview h3 {
        font-size: 0.92rem;
    }

    .v1-empty-preview p {
        font-size: 0.74rem;
    }

    .v1-page .chat-fab {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
        height: 48px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .v1-page .call-panel {
        inset: 0;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        height: 100dvh;
        max-width: none;
        max-height: none;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .v1-page .call-panel-header {
        min-height: auto;
        flex-wrap: wrap;
        padding: 12px max(12px, env(safe-area-inset-right)) 12px max(14px, env(safe-area-inset-left));
        gap: 8px;
    }

    .v1-page .call-header-info {
        flex: 1 1 140px;
        min-width: 0;
    }

    .v1-page .call-header-title {
        font-size: 0.82rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v1-page .call-header-connection {
        padding-left: 0;
        font-size: 0.66rem;
    }

    .v1-page .call-header-actions {
        flex: 1 1 100%;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
    }

    .v1-page .call-action-btn {
        min-height: 40px;
        padding: 8px 14px;
    }

    .v1-page .call-close-btn,
    .v1-page .header-mic-control .call-ctrl-btn {
        width: 40px;
        height: 40px;
    }

    .v1-page .call-status-block {
        padding: 24px 18px;
    }

    .v1-page .call-status-block h4 {
        font-size: 1.05rem;
    }

    .v1-page .lk-transcript-body {
        padding: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .v1-page .lk-transcript-line {
        max-width: 92%;
        font-size: 0.86rem;
    }
}

@media (max-width: 380px) {
    .v1-chat-label {
        display: none;
    }

    .v1-page .chat-fab {
        width: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .v1-page .call-header-title i {
        width: 24px;
        height: 24px;
        margin-right: 5px;
        font-size: 0.72rem;
    }

    .v1-page .call-action-btn.connect,
    .v1-page .call-action-btn.end {
        flex: 1;
        justify-content: center;
        max-width: calc(50% - 4px);
    }
}

