@charset "utf-8";

:root {
  --vt-blue-700: #1e4f8d;
  --vt-blue-600: #2563b0;
  --vt-blue-500: #2f78cf;
  --vt-blue-100: #e9f1fb;
  --vt-white: #ffffff;
  --vt-gray-50: #f6f8fb;
  --vt-gray-100: #edf1f5;
  --vt-gray-200: #dde3ea;
  --vt-gray-300: #c5ced8;
  --vt-gray-400: #7e8a98;
  --vt-gray-600: #4f5b67;
  --vt-gray-700: #3a4450;
  --vt-gray-800: #1f2b37;

  --vt-space-xs: 0.5rem;
  --vt-space-sm: 0.75rem;
  --vt-space-md: 1.25rem;
  --vt-space-lg: 2rem;
  --vt-space-xl: 2.75rem;
  --vt-space-2xl: 4rem;
  --vt-space-3xl: 5.5rem;
  --vt-radius: 1rem;
  --vt-radius-sm: 0.65rem;
  --vt-nav-offset: 4.75rem;
}

html {
  scroll-padding-top: calc(var(--vt-nav-offset) + 0.5rem);
}

body {
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--vt-gray-800);
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f9 55%, #e8eef6 100%);
  padding-top: 0;
  min-height: 100vh;
}

/* ——— Site shell (marketing + portal) ——— */
.vt-site {
  min-height: 100vh;
}

.vt-main {
  padding-top: calc(var(--vt-nav-offset) + var(--vt-space-lg));
  padding-bottom: var(--vt-space-3xl);
  width: 100%;
}

.vt-footer {
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(165deg, #1a2f4a 0%, #152638 48%, #121f30 100%);
}

.vt-footer__inner {
  overflow: hidden;
}

.vt-footer__grid {
  padding-top: var(--vt-space-2xl);
  padding-bottom: var(--vt-space-2xl);
}

.vt-footer__heading {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--vt-space-md);
}

.vt-footer__text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 38ch;
  font-size: 0.95rem;
}

.vt-footer__link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vt-footer__link:hover {
  color: #c8ddff;
}

.vt-footer__links li {
  margin-bottom: 0.65rem;
  padding: 0;
  border: 0;
}

.vt-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  text-decoration: none;
  padding: 0.15rem 0;
  display: inline-block;
}

.vt-footer__links a:hover {
  color: #fff;
}

.vt-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vt-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.vt-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

/* ——— Portal layout ——— */
.vt-portal {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.vt-portal__wrap {
  padding-top: var(--vt-space-md);
  padding-bottom: var(--vt-space-xl);
}

@media (min-width: 992px) {
  .vt-portal__sidebar {
    position: sticky;
    top: calc(var(--vt-nav-offset) + var(--vt-space-md));
    align-self: flex-start;
  }
}

.vt-portal__header {
  padding-left: 0.15rem;
}

.vt-portal__title {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vt-gray-800);
}

.vt-portal__content.profile-content {
  padding: var(--vt-space-xl) clamp(1.25rem, 3vw, 2.25rem);
  min-height: min(70vh, 720px);
  border-radius: var(--vt-radius);
  border: 1px solid rgba(221, 227, 234, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 48px rgba(24, 39, 75, 0.06);
  backdrop-filter: blur(8px);
}

.vt-sidebar-card {
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-200);
  background: linear-gradient(180deg, #fdfeff 0%, #f4f8fd 100%);
  box-shadow: 0 16px 40px rgba(24, 39, 75, 0.07);
}

.profile {
  margin: 0;
}

.vt-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--vt-space-md);
  margin-bottom: var(--vt-space-xl);
}

.vt-page-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--vt-gray-600);
  max-width: 65ch;
  margin-bottom: var(--vt-space-xl);
}

.vt-panel-section {
  margin-bottom: var(--vt-space-xl);
}

.vt-panel-section:last-child {
  margin-bottom: 0;
}

.vt-table-card {
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-200);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(24, 39, 75, 0.05);
}

.vt-table-card .table {
  margin-bottom: 0;
}

.vt-table-card .table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--vt-gray-400);
  border-bottom: 1px solid var(--vt-gray-200);
  padding: 1rem 1.25rem;
  background: var(--vt-gray-50);
}

.vt-table-card .table tbody td {
  padding: 1.1rem 1.25rem;
  vertical-align: middle;
  border-color: rgba(221, 227, 234, 0.85);
}

.vt-form-card {
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-200);
  background: #fff;
  padding: var(--vt-space-lg) clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: var(--vt-space-lg);
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.04);
}

.vt-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--vt-space-md);
  margin-top: var(--vt-space-xl);
  padding-top: var(--vt-space-lg);
  border-top: 1px solid var(--vt-gray-200);
}

.vt-empty-state {
  padding: var(--vt-space-2xl) var(--vt-space-md);
}

.vt-dashboard-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--vt-gray-600);
  max-width: 58ch;
  margin-bottom: var(--vt-space-xl);
}

.vt-badge-lg {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.vt-greeting-preview {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.55;
}

/* Menu editor */
.vt-menu-editor {
  display: flex;
  flex-direction: column;
  gap: var(--vt-space-lg);
}

.vt-menu-editor__head {
  padding-bottom: var(--vt-space-lg);
  border-bottom: 1px solid var(--vt-gray-200);
}

.vt-menu-editor__table-wrap {
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-gray-200);
  overflow: auto;
  margin-top: var(--vt-space-md);
  background: var(--vt-gray-50);
}

.vt-menu-editor__table-wrap .table {
  margin-bottom: 0;
  background: #fff;
}

.vt-menu-editor__table-wrap .table thead th {
  white-space: nowrap;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vt-gray-600);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--vt-gray-200);
}

.vt-menu-editor__table-wrap .table tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
}

.vt-hint {
  display: block;
  margin-top: var(--vt-space-sm);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--vt-gray-400);
}

.vt-debug-toggle {
  font-size: 0.875rem;
  font-weight: 600;
}

.vt-debug-panel {
  margin-top: var(--vt-space-md);
  padding: var(--vt-space-md);
  border-radius: var(--vt-radius-sm);
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.75rem;
  max-height: 320px;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--vt-gray-800);
}

a {
  color: var(--vt-blue-600);
}

a:hover,
a:focus {
  color: var(--vt-blue-700);
}

.btn {
  text-transform: none;
  font-weight: 600;
  border-width: 1px;
}

.btn-primary {
  background-color: var(--vt-blue-600);
  border-color: var(--vt-blue-600);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--vt-blue-700);
  border-color: var(--vt-blue-700);
}

.btn-outline-primary {
  border-color: var(--vt-blue-600);
  color: var(--vt-blue-600);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--vt-blue-600);
  color: var(--vt-white);
}

.btn-default {
  color: var(--vt-gray-800);
  border: 1px solid var(--vt-gray-200);
  background: var(--vt-white);
}

.label {
  display: inline-block;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.label-default {
  background: var(--vt-gray-100);
  color: var(--vt-gray-600);
}

.label-primary {
  background: var(--vt-blue-100);
  color: var(--vt-blue-700);
}

.label-success {
  background: #e8f7ee;
  color: #1f8a4d;
}

.label-info {
  background: #e7f3ff;
  color: #2563b0;
}

.label-warning {
  background: #fff3e0;
  color: #bf6d00;
}

.valltel-navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(221, 227, 234, 0.8);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  min-height: auto;
  padding: 0.65rem 0;
}

.valltel-navbar.shrink {
  box-shadow: 0 10px 24px rgba(18, 38, 63, 0.08);
}

.navbar-brand {
  height: auto;
  margin-right: 1rem;
  line-height: 1;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2f78cf, #1e4f8d);
  color: #fff;
  font-size: 0.95rem;
}

.brand-text {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--vt-gray-800);
}

.navbar .nav-link {
  color: var(--vt-gray-600);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
}

.valltel-navbar .navbar-nav {
  margin: 0;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background: var(--vt-gray-50);
  color: var(--vt-blue-700);
}

.vt-hero {
  padding: 3rem 0 2rem;
}

.vt-kicker {
  color: var(--vt-blue-600);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.vt-hero-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.vt-hero-text {
  color: var(--vt-gray-600);
  max-width: 62ch;
  font-size: 1.1rem;
}

.vt-hero-card,
.vt-feature-card,
.vt-content-card {
  border: 1px solid var(--vt-gray-200);
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(24, 39, 75, 0.05);
}

.vt-services-section-head {
  max-width: 52rem;
}

.vt-services-section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vt-blue-700);
  background: var(--vt-blue-100);
  border: 1px solid rgba(37, 99, 176, 0.2);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.vt-services-section-badge--platform {
  color: #0f4a3a;
  background: linear-gradient(135deg, #e6f7f1 0%, #d8f0e8 100%);
  border-color: rgba(15, 74, 58, 0.18);
}

.vt-services-platform-band {
  background: linear-gradient(180deg, rgba(230, 247, 241, 0.35) 0%, rgba(233, 241, 251, 0.5) 100%);
}

.vt-feature-card--platform {
  border-color: rgba(15, 74, 58, 0.12);
  box-shadow: 0 8px 22px rgba(15, 74, 58, 0.06);
}

.vt-feature-card--platform .h5 {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.vt-services-platform-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #1a7f63;
  font-size: 1.15em;
}

.vt-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: var(--vt-gray-600);
}

.vt-checklist i {
  color: #1f8a4d;
  margin-top: 0.2rem;
}

.profile-sidebar .card-body {
  background: transparent;
  border-radius: var(--vt-radius);
}

.profile-userpic {
  margin-bottom: 0.9rem;
  text-align: center;
}

.profile-usertitle {
  text-align: center;
}

.profile-usertitle-name {
  font-weight: 700;
}

.profile-usertitle-job {
  color: var(--vt-gray-400);
  font-size: 0.9rem;
}

.profile-usermenu ul li > a {
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  color: var(--vt-gray-600);
  text-decoration: none;
}

.profile-usermenu ul li.active > a,
.profile-usermenu ul li > a:hover {
  background: var(--vt-blue-100);
  color: var(--vt-blue-700);
}

.profile-usersubmenu {
  list-style: none;
  margin: 0.5rem 0 0 1.9rem;
  padding: 0;
}

.profile-usersubmenu li a {
  font-size: 0.9rem;
}

.profile-usersubmenu li.active-item a {
  color: var(--vt-blue-700);
  font-weight: 700;
}

.dashboard-panel {
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 39, 75, 0.05);
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
}

.dashboard-panel h4 {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(221, 227, 234, 0.85);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: "Manrope", Arial, sans-serif;
}

.dashboard-stat {
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-gray-200);
  background: #fff;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  position: relative;
  box-shadow: 0 12px 32px rgba(24, 39, 75, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.dashboard-stat:hover,
.dashboard-stat.vt-stat--active {
  border-color: rgba(37, 99, 176, 0.35);
  box-shadow: 0 20px 44px rgba(24, 39, 75, 0.1);
  transform: translateY(-2px);
}

.dashboard-stat .stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vt-gray-50);
  color: var(--vt-gray-600);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.dashboard-stat .stat-number {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dashboard-stat .stat-label {
  color: var(--vt-gray-600);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-stat .stat-link {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(221, 227, 234, 0.9);
}

.dashboard-stat .stat-link a {
  color: var(--vt-blue-600);
  font-weight: 600;
}

.dashboard-stat.stat-success .stat-icon {
  color: #1f8a4d;
}

.dashboard-stat.stat-warning .stat-icon {
  color: #bf6d00;
}

.dashboard-stat.stat-info .stat-icon {
  color: #2563b0;
}

.status-indicator {
  border: 1px solid var(--vt-gray-200);
  border-radius: 0.8rem;
  padding: 0.8rem;
  background: var(--vt-gray-50);
}

.status-indicator .status-title {
  font-weight: 700;
}

.status-meta {
  color: var(--vt-gray-400);
}

.getting-started-banner {
  background: linear-gradient(140deg, #1f5ca4, #357fcf);
  color: #fff;
  border-radius: var(--vt-radius);
  padding: clamp(1.75rem, 3vw, 2.5rem) !important;
}

.getting-started-banner h4 {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.getting-started-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.9rem;
  padding: 1rem;
  height: 100%;
}

.getting-started-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #fff;
  color: #1f5ca4;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.help-support-section {
  border: 1px solid var(--vt-gray-200);
  border-radius: var(--vt-radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 39, 75, 0.05);
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
}

.quick-actions {
  gap: var(--vt-space-sm) !important;
}

/* Portal list cards (numbers/menus) */
.extensions-list {
  margin-bottom: var(--vt-space-lg);
}

.extensions-list:last-child {
  margin-bottom: 0;
}

.extension-card.panel {
  border: 1px solid var(--vt-gray-200);
  border-radius: 0.85rem;
  box-shadow: 0 8px 20px rgba(24, 39, 75, 0.05);
  margin-bottom: 0;
}

.extension-card .panel-body {
  padding: clamp(1.15rem, 2vw, 1.5rem) clamp(1.15rem, 2.5vw, 1.65rem);
}

.extension-row {
  position: relative;
}

.extension-left {
  float: left;
  width: 28px;
  padding-top: 6px;
}

.extension-body {
  width: calc(100% - 28px);
  padding-right: 12px;
}

.extension-actions {
  float: right;
  text-align: right;
  white-space: nowrap;
}

.extension-top {
  margin-bottom: 0.65rem;
}

.extension-title {
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--vt-gray-800);
}

.ext-num {
  margin-right: 0.6rem;
  color: var(--vt-gray-800);
}

.ext-name {
  font-weight: 700;
}

.extension-sub {
  margin-top: 0.1rem;
  color: var(--vt-gray-400);
  font-size: 0.95rem;
}

.extension-details {
  border-top: 1px solid var(--vt-gray-200);
  padding-top: 0.65rem;
  color: var(--vt-gray-600);
  font-size: 0.9rem;
}

.detail-left {
  float: left;
}

.detail-right {
  float: right;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.status-dot--online {
  background: #20b997;
}

.status-dot--offline {
  background: #dc3545;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.65rem;
  vertical-align: middle;
}

.status-pill--online {
  background: rgba(32, 185, 151, 0.12);
  color: #0f7d66;
}

.status-pill--offline {
  background: rgba(220, 53, 69, 0.12);
  color: #b02a37;
}

.btn-soft {
  background: #f5f7fb;
  border: 1px solid var(--vt-gray-200);
  color: var(--vt-gray-800);
  border-radius: 0.6rem;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
}

.btn-soft:hover,
.btn-soft:focus {
  background: #eef3fb;
  border-color: var(--vt-gray-300);
  color: var(--vt-gray-800);
}

.btn-action {
  min-width: 82px;
}

.btn-ellipsis {
  width: 46px;
  padding-left: 0;
  padding-right: 0;
}

.ellipsis {
  letter-spacing: 2px;
  font-weight: 800;
}

.extension-more .dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  min-width: 180px;
}

/* Number/account detail grid */
.number-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--vt-gray-200);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--vt-gray-600);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-basis: 40%;
}

.info-value {
  color: var(--vt-gray-800);
  font-size: 0.9rem;
  flex-basis: 60%;
  text-align: right;
}

.phone-number {
  font-family: "Menlo", "Monaco", "Ubuntu Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--vt-blue-600);
}

.destination-card {
  background: var(--vt-gray-50);
  padding: 1rem;
  border-radius: 0.6rem;
  border: 1px solid var(--vt-gray-200);
}

.destination-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.destination-details .detail-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vt-gray-200);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.destination-details .detail-item:last-child {
  border-bottom: none;
}

.destination-details .detail-label {
  font-weight: 600;
  color: var(--vt-gray-600);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-basis: 40%;
}

.destination-details .detail-value {
  color: var(--vt-gray-800);
  font-size: 0.85rem;
  flex-basis: 60%;
  text-align: right;
}

.detail-item {
  margin-right: 14px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tip-item {
  padding: 16px;
  background: linear-gradient(135deg, rgba(47, 120, 207, 0.06) 0%, rgba(47, 120, 207, 0.02) 100%);
  border-left: 3px solid var(--vt-blue-600);
  border-radius: 6px;
}

.tip-item i {
  color: var(--vt-blue-600);
  margin-right: 8px;
  font-size: 16px;
}

.tip-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vt-gray-800);
}

.tip-item p {
  margin: 0;
  color: var(--vt-gray-600);
  font-size: 13px;
  line-height: 1.5;
}

.btn-table {
  background-color: var(--vt-blue-600);
  border-color: var(--vt-blue-600);
  color: #fff;
}

.btn-table:hover,
.btn-table:focus {
  background-color: var(--vt-blue-700);
  border-color: var(--vt-blue-700);
  color: #fff;
}

.has-no-margin {
  margin: 0;
}

.has-margin-top {
  margin-top: 50px;
}

.has-margin-bottom {
  margin-bottom: 50px;
}

.has-margin-xs-bottom {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 1rem;
}

.checkbox {
  margin-bottom: 0.5rem;
}

.warning {
  color: #b02a37;
}

/* Menu editor controls */
.vt-switch .form-check-input {
  cursor: pointer;
}

.vt-switch .form-check-input:checked {
  background-color: var(--vt-blue-600);
  border-color: var(--vt-blue-600);
}

.vt-switch .form-check-label {
  font-weight: 600;
  color: var(--vt-gray-700);
}

.vt-switch-state {
  display: inline-block;
  min-width: 28px;
  font-weight: 600;
}

@media (max-width: 991px) {
  :root {
    --vt-nav-offset: 4.35rem;
  }

  .vt-main {
    padding-top: calc(var(--vt-nav-offset) + var(--vt-space-md));
    padding-bottom: var(--vt-space-2xl);
  }

  .vt-portal__content.profile-content {
    padding: var(--vt-space-lg) 1.15rem;
    min-height: 50vh;
  }
}

@media (max-width: 767px) {
  .extension-body,
  .extension-actions,
  .detail-left,
  .detail-right {
    float: none;
    width: auto;
  }

  .extension-actions {
    margin-top: 12px;
    text-align: left;
  }

  .info-row,
  .destination-details .detail-item {
    flex-direction: column;
    gap: 6px;
  }

  .info-label,
  .destination-details .detail-label,
  .info-value,
  .destination-details .detail-value {
    text-align: left;
  }

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

/* ——— Panel: Inbox (coming soon) ——— */
.vt-inbox-coming-soon {
  position: relative;
  min-height: min(72vh, 640px);
  border-radius: var(--vt-radius);
  overflow: hidden;
  border: 1px solid var(--vt-gray-200);
  background: var(--vt-gray-50);
  box-shadow: 0 12px 40px rgba(24, 39, 75, 0.06);
}

.vt-inbox-coming-soon__mock {
  min-height: min(72vh, 640px);
  padding: 1.25rem 1.25rem 1.5rem;
  filter: saturate(0.92);
}

.vt-inbox-mock-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vt-inbox-mock-search {
  flex: 1 1 200px;
  max-width: 320px;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vt-gray-200), var(--vt-gray-100));
  opacity: 0.85;
}

.vt-inbox-mock-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.vt-inbox-mock-chip {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fff;
  border: 1px solid var(--vt-gray-200);
  color: var(--vt-gray-600);
}

.vt-inbox-mock-chip--muted {
  opacity: 0.55;
}

.vt-inbox-mock-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 1rem;
  min-height: 420px;
}

@media (max-width: 767px) {
  .vt-inbox-mock-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vt-inbox-mock-preview {
    min-height: 220px;
  }
}

.vt-inbox-mock-list {
  background: #fff;
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-gray-200);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vt-inbox-mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
}

.vt-inbox-mock-row--active {
  background: var(--vt-blue-100);
  border-color: rgba(37, 99, 176, 0.2);
}

.vt-inbox-mock-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--vt-gray-200), var(--vt-gray-100));
}

.vt-inbox-mock-row-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vt-inbox-mock-line {
  height: 0.55rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--vt-gray-200), #eef1f5);
}

.vt-inbox-mock-line--title {
  width: 72%;
  max-width: 180px;
}

.vt-inbox-mock-line--title.vt-inbox-mock-line--short {
  width: 55%;
}

.vt-inbox-mock-line--sub {
  width: 90%;
  max-width: 220px;
  opacity: 0.7;
}

.vt-inbox-mock-line--sub.vt-inbox-mock-line--short {
  width: 65%;
}

.vt-inbox-mock-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(37, 99, 176, 0.12);
  color: var(--vt-blue-700);
  flex-shrink: 0;
}

.vt-inbox-mock-badge--fax {
  background: rgba(79, 91, 103, 0.12);
  color: var(--vt-gray-600);
}

.vt-inbox-mock-preview {
  background: #fff;
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-gray-200);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vt-inbox-mock-preview-header .vt-inbox-mock-line--title {
  width: 45%;
}

.vt-inbox-mock-preview-header .vt-inbox-mock-line--sub {
  width: 30%;
  margin-top: 0.5rem;
}

.vt-inbox-mock-bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.vt-inbox-mock-bubble {
  height: 2.25rem;
  border-radius: 1rem;
  background: var(--vt-gray-100);
  border: 1px solid var(--vt-gray-200);
}

.vt-inbox-mock-bubble--in {
  width: 78%;
  max-width: 280px;
}

.vt-inbox-mock-bubble--out {
  width: 62%;
  max-width: 220px;
  align-self: flex-end;
  background: rgba(37, 99, 176, 0.08);
  border-color: rgba(37, 99, 176, 0.15);
}

.vt-inbox-mock-bubble--wide {
  width: 88%;
  max-width: 300px;
}

.vt-inbox-mock-fax-preview {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--vt-radius-sm);
  border: 1px dashed var(--vt-gray-200);
  background: var(--vt-gray-50);
}

.vt-inbox-mock-fax-icon {
  font-size: 1.75rem;
  color: var(--vt-gray-400);
}

.vt-inbox-mock-fax-preview .vt-inbox-mock-line {
  flex: 1;
  max-width: 200px;
}

.vt-inbox-coming-soon__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.vt-inbox-coming-soon__card {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 2.5rem), 440px);
  max-height: calc(100% - 2.5rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--vt-radius);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  text-align: center;
  pointer-events: auto;
}

.vt-inbox-coming-soon__eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vt-blue-600);
  margin-bottom: 0.5rem;
}

.vt-inbox-coming-soon__title {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vt-gray-800);
  margin-bottom: 0.75rem;
}

.vt-inbox-coming-soon__lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--vt-gray-600);
  margin-bottom: 1.35rem;
  text-align: left;
}

.vt-inbox-coming-soon__features {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  text-align: left;
}

.vt-inbox-coming-soon__features li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--vt-gray-200);
}

.vt-inbox-coming-soon__features li:first-child {
  border-top: 0;
  padding-top: 0;
}

.vt-inbox-coming-soon__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--vt-blue-100);
  color: var(--vt-blue-700);
  font-size: 1.1rem;
}

.vt-inbox-coming-soon__features li:nth-child(2) .vt-inbox-coming-soon__icon {
  background: var(--vt-gray-100);
  color: var(--vt-gray-600);
}

.vt-inbox-coming-soon__features li:nth-child(3) .vt-inbox-coming-soon__icon {
  background: #e8f7ee;
  color: #1f8a4d;
}

.vt-inbox-coming-soon__features strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--vt-gray-800);
}

.vt-inbox-coming-soon__feature-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--vt-gray-600);
  margin: 0;
}

.vt-inbox-coming-soon__footnote {
  text-align: left;
  line-height: 1.5;
}

.vt-inbox-coming-soon__footnote a {
  font-weight: 600;
}

/* ——— Panel: generic “currently unavailable” placeholder ——— */
.vt-panel-coming-soon {
  max-width: 42rem;
  margin: 0 auto;
}
.vt-panel-coming-soon__card {
  text-align: center;
}
.vt-panel-coming-soon__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.vt-panel-coming-soon__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: var(--vt-gray-100);
  color: var(--vt-gray-600);
  font-size: 1.35rem;
}
.vt-panel-coming-soon__eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vt-blue-600);
  margin-bottom: 0.45rem;
}
.vt-panel-coming-soon__title {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vt-gray-800);
  margin-bottom: 0.85rem;
}
.vt-panel-coming-soon__lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--vt-gray-600);
}
.vt-panel-coming-soon__features {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--vt-gray-200);
  text-align: left;
}
.vt-panel-coming-soon__features li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--vt-gray-200);
}
.vt-panel-coming-soon__features li:first-child {
  border-top: 0;
  padding-top: 0;
}
.vt-panel-coming-soon__feat-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--vt-blue-100);
  color: var(--vt-blue-700);
  font-size: 1.05rem;
}
.vt-panel-coming-soon__features strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--vt-gray-800);
}
.vt-panel-coming-soon__feat-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--vt-gray-600);
}
.vt-panel-coming-soon__footnote {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--vt-gray-200);
  line-height: 1.5;
  text-align: center;
}
.vt-panel-coming-soon__footnote a {
  font-weight: 600;
}

/* ——— Contact page ——— */
.vt-contact-breadcrumb .vt-breadcrumb {
  --bs-breadcrumb-divider: '›';
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--vt-gray-200);
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.vt-contact-breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.35rem;
}

.vt-contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.35rem;
  color: var(--vt-gray-400);
}

.vt-contact-card {
  background: #fff;
  border: 1px solid var(--vt-gray-200);
  box-shadow: 0 8px 22px rgba(24, 39, 75, 0.05);
}

.vt-contact-email-link {
  color: var(--vt-blue-600);
  text-decoration: none;
  word-break: break-word;
}

.vt-contact-email-link:hover {
  color: var(--vt-blue-700);
  text-decoration: underline;
}

.vt-contact-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--vt-gray-600);
  line-height: 1.55;
}

.vt-contact-highlights li:last-child {
  margin-bottom: 0;
}

.vt-contact-highlights .bi {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--vt-blue-600);
  font-size: 1.1rem;
}

.vt-contact-form .form-control,
.vt-contact-form .form-control-lg {
  border-color: var(--vt-gray-300);
}

.vt-contact-form .form-control:focus {
  border-color: var(--vt-blue-500);
  box-shadow: 0 0 0 0.2rem rgba(47, 120, 207, 0.18);
}

.vt-contact-alert {
  border-radius: var(--vt-radius-sm);
}

.vt-contact-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vt-contact-form {
  position: relative;
}

/* Bootstrap 3 compatibility helpers during migration */
.pull-right {
  float: right !important;
}

.text-right {
  text-align: right !important;
}

.btn-block {
  width: 100%;
  display: block;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > td {
  padding: 0.45rem 0.5rem;
}

.panel {
  border: 1px solid var(--vt-gray-200);
  border-radius: 0.85rem;
  background: #fff;
}

.panel-default {
  border-color: var(--vt-gray-200);
}

.panel-body {
  padding: 1rem;
}

.btn-xs {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.divider {
  margin: 0.5rem 0;
  border-top: 1px solid var(--vt-gray-200);
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
