.vialem-companion-heading-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  vertical-align: -4px;
  background: url("../../images/icon-sets/vialem-2026/vialem-companion-icon.png") center/contain no-repeat;
}

.vlm-companion-wrap {
  margin: 12px 0;
}

.vlm-companion-workspace {
  --vlm-companion-ink: #073f44;
  --vlm-companion-teal: #0d7c78;
  --vlm-companion-mint: #4fb8a4;
  --vlm-companion-gold: #e8b83d;
  --vlm-companion-paper: #f6f3ec;
  --vlm-companion-line: #d8e5df;
  margin: 0;
  color: var(--vlm-companion-ink);
}

.vlm-companion-workspace__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.vlm-companion-workspace__eyebrow {
  margin: 0 0 8px;
  color: var(--vlm-companion-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vlm-companion-workspace__hero h2 {
  margin: 0;
  color: var(--vlm-companion-ink);
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.vlm-companion-workspace__hero p:not(.vlm-companion-workspace__eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: #536a6d;
  font-size: 16px;
  line-height: 1.5;
}

.vlm-companion-prompts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin: 0 0 16px;
}

.vlm-companion-prompt {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 11px 14px;
  border: 1px solid var(--vlm-companion-line, #d8e5df);
  border-radius: 999px;
  background: #ffffff;
  color: var(--vlm-companion-ink, #073f44);
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.3;
  white-space: normal;
  box-shadow: none;
  transition: border-color .12s ease, background .12s ease;
}

/* Defeat any inherited theme/Elementor button hover-text-duplication
   pseudo-elements bleeding onto these plain <button> starters. */
.vlm-companion-prompt::before,
.vlm-companion-prompt::after {
  content: none !important;
  display: none !important;
}

.vlm-companion-prompt:hover,
.vlm-companion-prompt:focus-visible {
  border-color: var(--vlm-companion-teal, #0d7c78);
  background: #f3faf9;
  outline: none;
}

.vlm-companion-workspace__chat {
  margin-top: 10px;
}

.vlm-companion-workspace__limits {
  margin-top: 14px;
}

.vlm-companion__scope-label {
  font-weight: 600;
}

.vlm-companion__scope-select {
  width: auto;
  max-width: 100%;
}

.vlm-companion {
  display: block;
  border: 1px solid #deddd7;
  border-radius: 12px;
  background: #fbfbf8;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(31, 38, 43, 0.08);
}

.vlm-companion--minimal {
  border-radius: 8px;
  box-shadow: none;
}

.vlm-companion--minimal .vlm-companion__messages {
  height: 260px;
  padding: 16px;
}

.vlm-companion--minimal .vlm-companion__row {
  padding: 12px;
}

.vlm-companion__stage {
  min-width: 0;
  background: #fbfbf8;
}

.vlm-companion__messages {
  overflow: auto;
  border-radius: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 620px;
  background-color: #fbfbf8;
  border-bottom: 1px solid #e2e0da;
}

.vlm-companion--compact .vlm-companion__messages {
  height: 380px;
  padding: 22px;
}

.vlm-companion__msg {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 74%;
  padding: 13px 16px;
  border-radius: 18px;
  margin: 0;
  line-height: 1.4;
  white-space: pre-wrap;
  box-shadow: none;
}

.vlm-companion__msg.is-temporary {
  opacity: 0.82;
}

.vlm-companion__msg--user {
  align-self: flex-end;
  margin-left: auto;
  background: #ff765f;
  color: #ffffff;
  border: 0;
  border-top-right-radius: 8px;
}

.vlm-companion__msg--assistant {
  align-self: flex-start;
  margin-right: auto;
  position: relative;
  margin-left: 42px;
  background: #eeeee9;
  color: #25282b;
  border: 1px solid #dad8d1;
  border-top-left-radius: 8px;
}

.vlm-companion__assistant-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  margin: 0 0 6px;
  font-size: 13px;
  color: #4f5658;
}

.vlm-companion__assistant-title-icon {
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, #ff765f, #efaf38, #42b883, #6ab7b7, #8f6ed5, #ff765f);
}

.vlm-companion__msg h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  font-family: inherit;
}

.vlm-companion__msg p {
  margin: 0 0 8px;
}

.vlm-companion__msg ul,
.vlm-companion__msg ol {
  margin: 0 0 8px 18px;
  padding: 0;
}

.vlm-companion__msg li {
  margin: 0 0 4px;
}

.vlm-companion__msg code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  padding: 0 4px;
  border-radius: 4px;
}

.vlm-companion__msg-meta {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #727675;
}

.vlm-companion__msg-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vlm-companion__msg-action {
  border: 0;
  background: transparent!important;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px!important;
  padding: 0;
}

.vlm-companion__msg-action--delete,
.vlm-companion__reply-cancel {
  text-decoration: none;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  padding: 2px;
  cursor: pointer;
}

.vlm-companion__msg-action--delete:hover,
.vlm-companion__msg-action--delete:focus,
.vlm-companion__reply-cancel:hover,
.vlm-companion__reply-cancel:focus {
  border-color: #1d5f63!important;
  background: #edf5f5!important;
}

.vlm-companion__msg-action--delete > span,
.vlm-companion__reply-cancel > span {
  line-height: 1;
}

.vlm-companion__reply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f5f8f8;
  border: 1px solid #dbe4e7;
}

.vlm-companion__reply[hidden] {
  display: none
}

.vlm-companion__reply-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vlm-companion__row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 0;
  flex-wrap: wrap;
  font-size: 14px;
  padding: 12px 26px;
  border-top: 0;
  background: #fbfbf8;
}

.vlm-companion__row select {
  height: 30px;
  font-size: 14px;
  padding: 0 5px;
  margin: 0; 
}

.vlm-companion-wrap[data-vlm-widget] .vlm-companion {
  background: var(--vl-tier-widget-bg, #fff);
  border-color: var(--vl-tier-widget-border, #d7e4e7);
}

.vlm-companion-wrap[data-vlm-widget] h3,
.vlm-companion-wrap[data-vlm-widget] .vlm-companion__assistant-title,
.vlm-companion-wrap[data-vlm-widget] .vlm-companion__scope-label {
  color: var(--vl-tier-widget-title, #285f67);
}

.vlm-companion-wrap[data-vlm-widget] .vlm-companion__send,
.vlm-companion-wrap[data-vlm-widget] .vlm-companion__voice {
  border-color: var(--vl-tier-widget-accent, #7bb9bc);
}

.vlm-companion__input {
  flex: 1 1 320px;
  width: auto;
  min-height: 42px;
  max-height: 120px;
  resize: vertical;
  border-radius: 999px;
  background: #f5f4ef;
  border: 1px solid #d8d6cf;
  padding: 10px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.vlm-companion__send {
  min-height: 42px;
  border-radius: 999px;
  border-color: #ff765f !important;
  background: #ff765f !important;
  color: #ffffff !important;
  padding: 8px 18px;
}

.vlm-companion__voice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border-radius: 999px;
  border-color: #d8d6cf !important;
  background: #efeee9 !important;
  color: #25282b !important;
}

.vlm-companion__voice-icon {
  line-height: 1;
}

.vlm-companion__voice.is-active {
  background: #0f4b50;
  border-color: #0f4b50;
  color: #ffffff;
}

.vlm-companion__voice.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vlm-companion__status {
  min-height: 18px;
  margin-top: 0;
  color: #6b7280;
  padding: 0 26px 12px;
}

.vlm-career-profile-panel {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid #e1dfd8;
  border-radius: 18px;
  background: #ffffff;
  color: #25282b;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(37, 40, 43, 0.09);
}

.vlm-career-profile-panel.is-compact {
  margin: 10px 0 14px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(37, 40, 43, 0.07);
}

.vlm-career-profile-panel__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
}

.vlm-career-profile-panel.is-compact .vlm-career-profile-panel__hero {
  padding: 18px;
}

.vlm-career-profile-panel__body {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.vlm-career-profile-panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 4px solid #e8e6df;
  border-top-color: #8f6ed5;
  border-right-color: #42b883;
  border-bottom-color: #efaf38;
  border-radius: 50%;
  color: #25282b;
  flex: 0 0 56px;
  font-size: 12px;
  font-weight: 800;
}

.vlm-career-profile-panel__eyebrow {
  margin: 0 0 8px;
  color: #727675;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vlm-career-profile-panel h3 {
  margin: 0;
  color: #25282b;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.vlm-career-profile-panel.is-compact h3 {
  font-size: 20px;
}

.vlm-career-profile-panel p {
  margin: 8px 0 0;
  color: #5e6566;
  line-height: 1.45;
}

.vlm-career-profile-panel__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.vlm-career-profile-panel__app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 4px 14px 4px 8px;
  border: 1px solid #deddd7;
  border-radius: 999px;
  background: #f5f4ef;
  color: #3f4548;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vlm-career-profile-panel__app:hover,
.vlm-career-profile-panel__app:focus-visible {
  background: #eceae2;
  border-color: #c9c6bd;
  color: #3f4548;
  transform: translateY(-1px);
}

.vlm-career-profile-panel__app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: #6b6f6d;
}

.vlm-app-icon-svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vlm-career-profile-panel__app-icon .vlm-app-icon-svg {
  width: 22px;
  height: 22px;
}

.vlm-career-profile-panel__app--claude .vlm-career-profile-panel__app-icon,
.vlm-career-profile-panel__connection-mark--claude .vlm-app-icon-svg {
  color: #c96442;
}

.vlm-career-profile-panel__app--claude .vlm-app-icon-svg,
.vlm-career-profile-panel__connection-mark--claude .vlm-app-icon-svg {
  fill: currentColor;
  stroke: none;
}

.vlm-career-profile-panel__app--chatgpt .vlm-career-profile-panel__app-icon {
  color: #0e8f7f;
}

.vlm-career-profile-panel__app--codex .vlm-career-profile-panel__app-icon {
  color: #2f3a44;
}

.vlm-career-profile-panel__app--mcp .vlm-career-profile-panel__app-icon {
  color: #b8862e;
}

.vlm-career-profile-panel__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.vlm-career-profile-panel__actions .button {
  border-radius: 999px;
}

.vlm-career-profile-panel__actions .button-primary {
  border-color: #25282b !important;
  background: #25282b !important;
  color: #ffffff !important;
}

.vlm-career-profile-panel__status {
  min-height: 18px;
  padding: 0 28px 10px;
  color: #5e6566;
  font-size: 13px;
  text-align: right;
}

.vlm-career-profile-panel.is-compact .vlm-career-profile-panel__status {
  padding: 0 18px 8px;
}

.vlm-career-profile-panel__connections {
  border-top: 1px solid #e7e4de;
  background: #fbfaf6;
}

.vlm-career-profile-panel__connections > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 28px;
  color: #25282b;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.vlm-career-profile-panel__connections > summary::-webkit-details-marker,
.vlm-career-profile-panel__connection > summary::-webkit-details-marker {
  display: none;
}

.vlm-career-profile-panel__connections > summary::after,
.vlm-career-profile-panel__connection > summary::after {
  content: "+";
  color: #666a68;
  font-weight: 900;
}

.vlm-career-profile-panel__connections[open] > summary::after,
.vlm-career-profile-panel__connection[open] > summary::after {
  content: "-";
}

.vlm-career-profile-panel__connect-note {
  margin: 0;
  padding: 0 28px 16px;
  color: #4d5558;
  font-size: 14px;
}

.vlm-career-profile-panel__connection-list {
  display: grid;
  gap: 12px;
  padding: 0 28px 28px;
}

.vlm-career-profile-panel__connection {
  border: 1px solid #e4e1da;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.vlm-career-profile-panel__connection > summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

.vlm-career-profile-panel__connection-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5f4ef;
  color: #3f4548;
}

.vlm-career-profile-panel__connection-mark .vlm-app-icon-svg {
  width: 26px;
  height: 26px;
}

.vlm-career-profile-panel__connection-mark--claude {
  background: rgba(201, 100, 66, 0.14);
  color: #c96442;
}

.vlm-career-profile-panel__connection-mark--chatgpt {
  background: rgba(14, 143, 127, 0.14);
  color: #0e8f7f;
}

.vlm-career-profile-panel__connection-mark--codex {
  background: rgba(47, 58, 68, 0.12);
  color: #2f3a44;
}

.vlm-career-profile-panel__connection-mark--mcp {
  background: rgba(184, 134, 46, 0.16);
  color: #b8862e;
}

.vlm-career-profile-panel__connection strong,
.vlm-career-profile-panel__connection small {
  display: block;
}

.vlm-career-profile-panel__connection strong {
  color: #25282b;
  font-size: 15px;
}

.vlm-career-profile-panel__connection small {
  margin-top: 2px;
  color: #5e6566;
  font-size: 12px;
}

.vlm-career-profile-panel__connection-body {
  padding: 14px 16px 16px;
  border-top: 1px solid #ece9e2;
}

.vlm-career-profile-panel__connection-body ol {
  margin: 0 0 14px 20px;
  padding: 0;
  color: #25282b;
  font-size: 14px;
  line-height: 1.55;
}

.vlm-career-profile-panel__connection-body li {
  margin: 5px 0;
}

.vlm-career-profile-panel__snippet-heading {
  margin: 12px 0 7px;
  color: #4d5558;
  font-size: 13px;
  font-weight: 800;
}

.vlm-career-profile-panel__snippet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid #e5e2dc;
  border-radius: 12px;
  background: #fffefa;
}

.vlm-career-profile-panel__snippet code {
  min-width: 0;
  color: #25282b;
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.vlm-career-profile-panel__copy {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid #d8d6cf;
  border-radius: 999px;
  background: #ffffff;
  color: #25282b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.vlm-career-profile-panel__copy:hover,
.vlm-career-profile-panel__copy:focus {
  border-color: #c9c5bb;
  background: #f4f2ed;
}

.vlm-companion__upsell {
  margin-top: 10px;
}

.vlm-companion__upsell .vlm-companion__limits {
  margin: 20px 0 10px 0;
  padding: 10px 0 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  color: #475569;
  font-weight: bold;
  border-top: 1px solid;
}

.vlm-companion__upsell--standalone {
  margin-top: 0;
}

.vlm-companion__upsell--standalone .vlm-companion__limits {
  margin: 0 0 10px 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: #475569;
  font-weight: 600;
}
.vlm-companion-limits {
  background: var(--vl-brand-mist, #f8fbfb);
  border: 1px solid #d9e5eb;
  border-radius: 12px !important;
  margin-right: 20px;
}


.vlm-companion__upgrade-toggle {
  width: 100%;
  border: 1px solid #b8d1d4;
  background: #f0f7f7;
  color: #0f4b50;
  border-radius: 8px;
  padding: 6px 8px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px!important;
}

.vlm-companion__upgrade-toggle::after {
  content: "+";
  float: right;
  font-size: 16px;
  line-height: 1;
}

.vlm-companion__upgrade-toggle.is-open::after {
  content: "-";
}

.vlm-companion__upgrade-panel {
  margin-top: 8px;
}

.vlm-companion__limits {
  margin: 0 0 8px;
  padding: 8px 10px;
  border: 1px solid #d7e3e8;
  border-radius: 8px;
  background: #f7fbfd;
  font-size: 12px;
  color: #334155;
}

.vlm-companion__upgrade {
  margin: 0;
  padding: 10px;
  border: 1px solid #d3e5e4;
  border-radius: 10px;
  background: #f2f8f7;
}

.vlm-companion__upgrade-title {
  font-weight: 700;
  color: #0f4b50;
  margin-bottom: 4px;
}

.vlm-companion__upgrade-hint {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.vlm-companion__upgrade-voucher {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.vlm-companion__upgrade-voucher-label {
  font-size: 12px;
  color: #334155;
}

.vlm-companion__upgrade-voucher-input {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  min-height: 30px;
  padding: 8px 10px;
}

.vlm-companion__upgrade-actions {
  display: inline;
  flex-wrap: nowrap;
  gap: 8px;
}

.vlm-companion__upgrade-btn {
  white-space: nowrap;
  font-size: 1em!important;
  margin:0 3% 0 0; 
  
  padding: 5px 10px;
  min-width: inherit;
}

.vlm-companion__msg-action[data-tooltip],
.vlm-companion__reply-cancel[data-tooltip],
.vlm-companion__voice[data-tooltip] {
  position: relative;
}

.vlm-companion__msg-action[data-tooltip]:hover::after,
.vlm-companion__msg-action[data-tooltip]:focus::after,
.vlm-companion__reply-cancel[data-tooltip]:hover::after,
.vlm-companion__reply-cancel[data-tooltip]:focus::after,
.vlm-companion__voice[data-tooltip]:hover::after,
.vlm-companion__voice[data-tooltip]:focus::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 25;
  pointer-events: none;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
}

@media (max-width: 782px) {
  .vlm-companion-workspace__hero {
    display: block;
  }

  .vlm-companion-workspace__hero h2 {
    font-size: 32px;
  }

  .vlm-companion-prompts {
    grid-template-columns: 1fr;
  }

  .vlm-companion-prompt {
    min-height: 0;
  }

  .vlm-career-profile-panel,
  .vlm-career-profile-panel.is-compact {
    display: block;
  }

  .vlm-career-profile-panel__hero,
  .vlm-career-profile-panel.is-compact .vlm-career-profile-panel__hero {
    display: block;
    padding: 18px;
  }

  .vlm-career-profile-panel__body {
    align-items: flex-start;
  }

  .vlm-career-profile-panel__actions {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .vlm-career-profile-panel h3 {
    font-size: 24px;
  }

  .vlm-career-profile-panel__status {
    margin-top: 8px;
    padding: 0 18px 8px;
    text-align: left;
  }

  .vlm-career-profile-panel__connections > summary,
  .vlm-career-profile-panel__connect-note,
  .vlm-career-profile-panel__connection-list {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vlm-career-profile-panel__snippet {
    grid-template-columns: 1fr;
  }

  .vlm-career-profile-panel__copy {
    width: 100%;
  }

  .vlm-companion__messages {
    height: 360px;
    padding: 12px;
  }

  .vlm-companion--compact .vlm-companion__messages {
    height: 320px;
  }

  .vlm-companion__msg {
    max-width: 92%;
  }

  .vlm-companion__msg--assistant {
    margin-left: 34px;
  }

  .vlm-companion__assistant-title-icon {
    left: -34px;
    width: 26px;
    height: 26px;
  }

  .vlm-companion__row {
    padding: 12px;
  }

  .vlm-companion__input {
    flex-basis: 100%;
    border-radius: 14px;
  }

  .vlm-companion__status {
    padding: 0 12px 12px;
  }
}
