:root {
--qs-blue: #3775b8;
--qs-blue-dark: #22577e;
--qs-blue-light: #50B6FF;
--qs-teal: #2DCCCD;
--qs-gray: #5b5b60;
--bg: #f6f9fd;
--card: #ffffff;
--border: #e6eef8;
--shadow: 0 14px 40px rgba(34, 87, 126, .12);
--shadow-soft: 0 10px 26px rgba(34, 87, 126, .10);
--radius: 18px;
--radius-lg: 26px;
--ok: #1f9d55;
--warn: #c27803;
--danger: #b00020;
--info: #0b6bd6;
--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
} .iconbar *,
.modal-content-wrapper * {
box-sizing: border-box;
} .iconbar {
background: #fff;
border-bottom: 1px solid var(--border); width: 100%;
box-sizing: border-box; padding: 0 !important;
margin: 0 !important;
font-family: var(--font);
line-height: normal;
text-align: left;
z-index: 99;
}
.iconbar .wrap {
max-width: 1400px;
margin: 0 auto;
padding: 10px 18px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: nowrap;
} .brand-logo-link {
flex: 0 0 auto;
}
.header-logo-img {
height: 44px; width: auto;
display: block;
} .nav-center {
display: flex;
gap: 8px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
flex: 1 1 auto; } .iconbar .iconbtn {
width: 70px;
height: auto; min-height: 60px; display: flex;
flex-direction: column;
align-items: center;
justify-content: center; gap: 4px;
padding: 6px 4px;
border-radius: 12px;
border: 1px solid transparent;
transition: transform .15s ease, background .15s ease, border-color .15s ease;
user-select: none;
text-decoration: none !important;
color: inherit;
}
.iconbar .iconbtn:hover {
background: rgba(55, 117, 184, .06);
border-color: rgba(55, 117, 184, .18);
transform: translateY(-1px);
}
.iconbar .iconbtn.active {
background: rgba(55, 117, 184, .10);
border-color: rgba(55, 117, 184, .35);
box-shadow: 0 10px 24px rgba(34, 87, 126, .10);
}
.iconbar .icon {
width: 24px;
height: 24px;
color: var(--qs-blue);
flex-shrink: 0;
background: none;
border: none;
border-radius: 0;
}
.iconbar .label {
text-align: center;
font-size: 8px; letter-spacing: .2px;
color: var(--qs-blue);
font-weight: 800;
line-height: 1.1;
text-transform: uppercase;
} .avatar {
width: 36px;
height: 36px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(55, 117, 184, .18), rgba(34, 87, 126, .18));
border: 1px solid rgba(55, 117, 184, .25);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(34, 87, 126, .12);
}
.avatar span {
font-size: 10px;
color: var(--qs-blue-dark);
font-weight: 800;
} .qs-lang-wrapper {
flex: 0 0 auto;
display: flex;
align-items: center;
margin-left: auto;
margin-right: 8px;
}
.qs-lang-select {
padding: 6px 10px;
border: 1px solid rgba(55, 117, 184, .25);
border-radius: 10px;
background: #fff;
color: var(--qs-blue-dark);
font-size: 13px;
font-weight: 700;
font-family: var(--font);
cursor: pointer;
outline: none;
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233775b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 6px center;
padding-right: 24px;
transition: border-color .15s ease, box-shadow .15s ease;
width: auto;
min-width: 0;
}
.qs-lang-select:hover {
border-color: rgba(55, 117, 184, .45);
box-shadow: 0 2px 8px rgba(55, 117, 184, .12);
}
.qs-lang-select:focus {
border-color: var(--qs-blue);
box-shadow: 0 0 0 3px rgba(55, 117, 184, .15);
} .qs-user-wrapper {
position: relative;
margin-left: 10px;
display: flex;
align-items: center;
flex: 0 0 auto;
}
.qs-user-avatar {
width: 44px; height: 44px;
border-radius: 50%;
background: linear-gradient(135deg, var(--qs-blue), var(--qs-blue-dark));
color: #fff;
font-weight: 700;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 12px rgba(34, 87, 126, .2);
transition: transform 0.2s;
user-select: none;
}
.qs-user-avatar:hover {
transform: scale(1.05);
}
.qs-user-dropdown {
position: absolute;
top: 55px; right: 0;
background: #fff;
border: 1px solid var(--border);
border-radius: 12px;
box-shadow: var(--shadow);
width: 180px;
display: flex;
flex-direction: column;
overflow: hidden;
z-index: 1000;
animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-5px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.qs-user-dropdown.hidden {
display: none;
}
.qs-user-dropdown a {
padding: 12px 16px;
text-decoration: none;
color: var(--qs-blue-dark);
font-size: 13px;
font-weight: 600;
transition: background 0.1s;
border-bottom: 1px solid rgba(0, 0, 0, 0.03);
display: block;
}
.qs-user-dropdown a:hover {
background: rgba(55, 117, 184, .06);
}
.qs-user-dropdown a.logout {
color: var(--danger);
border-top: 1px solid var(--border);
border-bottom: none;
}  .mobile-toggle,
.mobile-menu {
display: none;
}
@media (max-width: 1024px) {
.iconbar .label {
display: none;
}
.iconbar .iconbtn {
width: 45px;
height: 45px;
padding: 0;
justify-content: center;
}
.nav-center {
gap: 8px;
}
}
@media (max-width: 768px) { body:has(.iconbar) {
padding-top: 70px !important;
padding-bottom: 0 !important;
} .iconbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
border-bottom: 1px solid var(--border);
border-top: none;
background: #fff;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
height: 70px;
padding: 0; width: 100%;
margin: 0 !important;
left: 0;
right: 0;
}
.iconbar .wrap {
width: 100%;
max-width: 100%;
height: 100%;
padding: 0 16px;
margin: 0;
justify-content: space-between; align-items: center;
flex-wrap: nowrap;
} .header-logo-img { height: 32px;
width: auto;
display: block;
}
.brand-logo-link {
display: block;
margin-right: auto; flex-shrink: 0;
} .qs-user-wrapper {
display: none;
} .qs-lang-wrapper {
margin-left: 0;
margin-right: 4px;
}
.qs-lang-select {
padding: 4px 6px;
padding-right: 22px;
font-size: 11px;
} .nav-center {
width: auto;
height: 100%;
flex: 0 1 auto; order: 0;
margin: 0;
gap: 4px;
overflow: visible; } .iconbar .iconbtn {
display: none;
min-width: 0;
width: 48px; height: 100%;
padding: 0;
border: none;
} .iconbar .iconbtn[data-id="inicio"],
.iconbar .iconbtn[data-id="recetar"],
.iconbar .iconbtn[data-id="assistant"],
.iconbar .iconbtn[data-id="ia"],
.iconbar .iconbtn[data-id="reserva"] {
display: flex !important;
} .iconbar .iconbtn .label {
display: none;
} .mobile-toggle {
display: flex !important;
align-items: center;
justify-content: center;
width: 48px;
height: 100%;
background: transparent;
border: none;
color: var(--qs-blue);
cursor: pointer;
margin-left: 4px;
} .mobile-menu {
position: fixed;
top: 70px;
right: 0;
width: 260px;
background: #fff;
border: 1px solid var(--border);
box-shadow: -4px 10px 30px rgba(0, 0, 0, 0.15);
border-radius: 0 0 0 16px;
display: flex;
flex-direction: column;
padding: 10px 0;
z-index: 9998;
max-height: calc(100vh - 70px);
overflow-y: auto;
animation: slideInRight 0.2s ease-out;
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.mobile-menu.hidden {
display: none;
}
.mobile-menu a {
padding: 14px 20px;
text-decoration: none;
color: var(--qs-blue-dark);
font-size: 14px;
font-weight: 600;
display: flex;
align-items: center;
gap: 12px;
border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.mobile-menu a:hover {
background: rgba(55, 117, 184, .06);
}
.mobile-menu a svg {
width: 20px;
height: 20px;
color: var(--qs-blue);
opacity: 0.8;
}
.mobile-menu .separator {
height: 1px;
background: var(--border);
margin: 8px 0;
}
.mobile-menu a.logout {
color: var(--danger);
font-weight: 700;
}
.mobile-menu a.logout svg {
color: var(--danger);
} #ia-doctor-modal-overlay {
z-index: 100000; }
}  .topbar {
background: #eef5ff;
border-bottom: 1px solid var(--border);
}
.topbar .wrap {
padding: 12px 18px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
}
.brand {
display: flex;
align-items: center;
gap: 10px;
}
.logo {
height: 32px;
width: auto;
object-fit: contain;
}
.brand-text h1 {
margin: 0;
font-size: 15px;
color: var(--qs-blue-dark);
font-weight: 900;
}
.brand-text span {
font-size: 11px;
color: var(--qs-gray);
}
.spacer {
flex: 1;
}
.btn {
border: 1px solid transparent;
border-radius: 12px;
padding: 8px 14px;
font-weight: 800;
cursor: pointer;
background: var(--qs-blue);
color: #fff;
box-shadow: 0 6px 14px rgba(55, 117, 184, .18);
font-size: 13px;
display: inline-flex;
align-items: center;
gap: 6px;
text-decoration: none;
}
.btn.secondary {
background: #fff;
color: var(--qs-blue-dark);
border-color: rgba(55, 117, 184, .25);
box-shadow: none;
}
.btn.ok {
background: var(--ok);
}
.btn:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.container {
padding: 20px;
} .agents-shell {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
overflow: hidden;
}
.shell-hd {
padding: 10px 14px;
border-bottom: 1px solid var(--border);
background: linear-gradient(90deg, rgba(55, 117, 184, .05), transparent);
}
.tabs {
display: flex;
gap: 6px;
flex-wrap: wrap;
}
.tab {
padding: 8px 12px;
border-radius: 99px;
border: 1px solid transparent;
background: transparent;
color: var(--qs-gray);
font-weight: 700;
font-size: 12px;
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
transition: 0.2s;
}
.tab:hover {
background: rgba(0, 0, 0, 0.03);
}
.tab.active {
background: #fff;
border-color: var(--border);
color: var(--qs-blue-dark);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.tab svg {
width: 16px;
height: 16px;
opacity: 0.8;
}
.shell-body {
padding: 20px;
} .panel {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
overflow: hidden;
margin-bottom: 20px;
}
.panel-hd {
padding: 12px 16px;
border-bottom: 1px solid var(--border);
background: #fafbfc;
display: flex;
justify-content: space-between;
align-items: center;
}
.panel-hd h2 {
margin: 0;
font-size: 13px;
text-transform: uppercase;
color: var(--qs-blue-dark);
font-weight: 800;
}
.panel-hd .hint {
font-size: 11px;
color: var(--qs-gray);
font-weight: 600;
}
.panel-body {
padding: 16px;
} .split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.field {
display: grid;
gap: 6px;
margin-bottom: 12px;
}
.field label {
font-size: 11px;
font-weight: 800;
color: var(--qs-gray);
text-transform: uppercase;
}
textarea,
input {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 10px;
font-family: inherit;
font-size: 14px;
outline: none;
background: #fff;
}
textarea:focus,
input:focus {
border-color: var(--qs-blue);
}
textarea {
min-height: 80px;
resize: vertical;
} .drop {
border: 2px dashed var(--border);
background: #fdfdfd;
border-radius: 16px;
padding: 24px;
text-align: center;
transition: 0.2s;
cursor: pointer;
}
.drop:hover {
border-color: var(--qs-blue);
background: rgba(55, 117, 184, 0.02);
}
.drop-icon {
color: var(--qs-blue-light);
margin-bottom: 10px;
display: flex;
justify-content: center;
}
.drop b {
display: block;
color: var(--qs-blue-dark);
margin-bottom: 4px;
}
.drop p {
font-size: 12px;
color: var(--qs-gray);
margin: 0;
} .statusline {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 600;
color: var(--qs-gray);
}
.mic {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--danger);
}
.mic.on {
background: var(--ok);
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(1.2);
}
100% {
opacity: 1;
transform: scale(1);
}
} .toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: #333;
color: #fff;
padding: 12px 20px;
border-radius: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
gap: 10px;
z-index: 999999;
opacity: 0;
pointer-events: none;
transition: 0.3s;
}
.toast.show {
opacity: 1;
transform: translateX(-50%) translateY(-10px);
}
.toast-icon svg {
width: 20px;
height: 20px;
} .loader {
display: none;
justify-content: center;
padding: 20px;
}
.loader.show {
display: flex;
}
.spinner {
width: 24px;
height: 24px;
border: 3px solid var(--border);
border-top-color: var(--qs-blue);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
} .agent-list {
display: grid;
gap: 14px;
}
.agent-card {
background: #fff;
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
}
.agent-header {
padding: 12px;
display: flex;
gap: 12px;
border-bottom: 1px solid var(--border);
background: #fbfbfb;
}
.agent-avatar {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--qs-teal), var(--qs-blue));
border-radius: 8px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 14px;
}
.agent-info {
flex: 1;
}
.agent-name {
font-weight: 800;
color: var(--qs-blue-dark);
font-size: 14px;
}
.agent-meta {
display: flex;
gap: 6px;
flex-wrap: wrap;
margin-top: 4px;
}
.meta-badge {
font-size: 10px;
padding: 2px 8px;
background: #fff;
border: 1px solid var(--border);
border-radius: 4px;
color: var(--qs-gray);
font-weight: 600;
}
.meta-badge.concordance {
background: #e0fbfb;
border-color: #bdfdfd;
color: #008888;
}
.agent-body {
padding: 12px;
font-size: 13px;
line-height: 1.5;
color: #444;
}
.section-title {
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
color: var(--qs-blue);
margin-bottom: 6px;
} .chips {
display: flex;
gap: 6px;
flex-wrap: wrap;
margin-bottom: 10px;
}
.chip {
padding: 6px 12px;
border-radius: 20px;
border: 1px dashed var(--qs-blue-light);
font-size: 12px;
cursor: pointer;
color: var(--qs-blue-dark);
background: #f0f9ff;
}
.chip:hover {
background: #e0f2fe;
}
.chip.on {
background: var(--qs-blue);
color: #fff;
border-style: solid;
border-color: var(--qs-blue);
} .toggle-row {
display: flex;
gap: 10px;
align-items: center;
background: #f4f8fb;
padding: 10px;
border-radius: 10px;
margin: 10px 0;
}
.switch {
position: relative;
display: inline-block;
width: 40px;
height: 22px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 22px;
}
.slider:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 3px;
bottom: 3px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked+.slider {
background-color: var(--qs-blue);
}
input:checked+.slider:before {
transform: translateX(18px);
} .hidden {
display: none !important;
}
.muted {
color: #999;
}
.small {
font-size: 12px;
}
.row {
display: flex;
gap: 10px;
align-items: center;
} .concordance-map {
padding: 16px;
background: #fcfcfc;
border: 1px solid var(--border);
border-radius: 16px;
margin-bottom: 16px;
}
.bubble-container {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
min-height: 100px;
align-items: center;
}
.bubble {
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(55, 117, 184, 0.1);
border: 2px solid var(--qs-blue);
transition: 0.2s;
}
.bubble:hover {
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.bubble-pct {
font-weight: 800;
font-size: 16px;
color: var(--qs-blue-dark);
}
.bubble-name {
font-size: 9px;
max-width: 60px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} .urgency-bar {
height: 12px;
background: linear-gradient(90deg, #4fd1c5, #f6e05e, #f56565);
border-radius: 6px;
position: relative;
margin-top: 6px;
}
.urgency-needle {
width: 2px;
height: 16px;
background: #333;
position: absolute;
top: -2px;
transition: 0.5s;
}.qs-app-wrapper {
--qs-brand: #3775b8;
--qs-brand-2: #22577e;
--qs-bg: #f6f8fb;
--qs-text: #0b1220;
--qs-muted: #5b5b60;
--qs-line: #e6ecf5;
--qs-success: #13c28a;
--qs-warning: #ffb020;
--qs-danger: #e11d48;
--qs-shadow: 0 12px 30px rgba(17, 24, 39, .12);
--qs-shadow2: 0 22px 60px rgba(17, 24, 39, .16);
--qs-r14: 14px;
--qs-r18: 18px;
--qs-r22: 22px;
--qs-r26: 26px;
--qs-r30: 30px;
--qs-t: 180ms cubic-bezier(.2, .8, .2, 1);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: var(--qs-text);
background: var(--qs-bg);
min-height: 80vh; position: relative;
overflow: hidden;
border-radius: var(--qs-r22);
}
.qs-app-wrapper * {
box-sizing: border-box;
}
.qs-container {
max-width: 560px;
margin: 0 auto;
padding: 14px 14px 124px 14px;
} .qs-topbar {
position: sticky;
top: 0;
z-index: 50;
margin: -14px -14px 14px -14px;
padding: 14px 14px 12px 14px;
background: rgba(246, 248, 251, 0.94);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--qs-line);
}
.qs-toprow {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.qs-brand {
display: flex;
align-items: center;
gap: 10px;
font-weight: 950;
}
.qs-logo {
width: 38px;
height: 38px;
border-radius: 12px;
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
display: grid;
place-items: center;
color: white;
font-weight: 950;
box-shadow: var(--qs-shadow);
}
.qs-brandmeta {
display: flex;
flex-direction: column;
gap: 2px;
line-height: 1.1;
}
.qs-brandmeta b {
font-size: 14px;
}
.qs-brandmeta span {
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
}
.qs-badge {
padding: 6px 10px;
border-radius: 999px;
background: rgba(55, 117, 184, .12);
color: var(--qs-brand-2);
font-size: 12px;
font-weight: 950;
display: inline-flex;
align-items: center;
gap: 8px;
}
.qs-dot {
width: 8px;
height: 8px;
border-radius: 99px;
background: rgba(19, 194, 138, .9);
display: inline-block;
}
.qs-dot.offline {
background: #9ca3af;
}
.qs-h1 {
font-size: 22px;
margin: 10px 0 4px;
font-weight: 800;
}
.qs-sub {
font-size: 13px;
color: var(--qs-muted);
margin: 0;
} .qs-btn {
border: 0;
border-radius: 16px;
padding: 12px 14px;
font-weight: 950;
cursor: pointer;
display: inline-flex;
justify-content: center;
align-items: center;
gap: 10px;
transition: transform var(--qs-t);
}
.qs-btn:active {
transform: scale(.98);
}
.qs-btn-primary {
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
color: white;
}
.qs-btn-ghost {
background: rgba(255, 255, 255, .84);
border: 1px solid var(--qs-line);
color: var(--qs-brand-2);
}
.qs-btn-block {
width: 100%;
}
.qs-iconbtn {
width: 42px;
height: 42px;
border-radius: 16px;
background: white;
border: 1px solid var(--qs-line);
display: grid;
place-items: center;
cursor: pointer;
} .qs-row {
display: flex;
gap: 10px;
align-items: center;
}
.qs-row-between {
display: flex;
gap: 10px;
align-items: center;
justify-content: space-between;
}
[data-hidden="true"] {
display: none !important;
} .qs-input {
width: 100%;
padding: 14px;
border-radius: 18px;
border: 1px solid var(--qs-line);
font-size: 14px;
outline: none;
transition: border-color var(--qs-t);
}
.qs-input:focus {
border-color: var(--qs-brand);
}
.qs-label {
display: block;
font-size: 12px;
color: var(--qs-muted);
font-weight: 950;
margin: 10px 6px 8px;
} .qs-tabbar {
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 10px;
z-index: 80;
width: min(560px, calc(100% - 18px));
padding: 10px;
border-radius: 26px;
background: rgba(255, 255, 255, .9);
border: 1px solid var(--qs-line);
box-shadow: var(--qs-shadow2);
backdrop-filter: blur(16px);
}
.qs-tabs {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 6px;
}
.qs-tab {
padding: 10px 8px;
border-radius: 18px;
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
font-size: 11px;
font-weight: 950;
color: var(--qs-muted);
text-decoration: none;
}
.qs-tab.active {
color: var(--qs-brand-2);
background: rgba(55, 117, 184, .10);
}
.qs-tab i {
width: 22px;
height: 22px;
} .qs-fab {
position: fixed;
right: 16px;
bottom: 118px;
z-index: 90;
width: 56px;
height: 56px;
border-radius: 20px;
background: var(--qs-danger);
color: white;
display: grid;
place-items: center;
box-shadow: 0 18px 40px rgba(225, 29, 72, .3);
text-decoration: none;
}
.qs-fab small {
position: absolute;
right: 64px;
background: rgba(17, 24, 39, .92);
padding: 8px 10px;
border-radius: 999px;
font-size: 12px;
opacity: 0;
pointer-events: none;
transition: opacity var(--qs-t);
}
.qs-fab:hover small {
opacity: 1;
} .qs-sheet-backdrop {
position: fixed;
inset: 0;
background: rgba(17, 24, 39, .44);
z-index: 95;
display: none;
}
.qs-sheet-backdrop.active {
display: block;
}
.qs-sheet {
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: -120%;
width: 100%;
max-width: 560px;
background: white;
border-top-left-radius: 30px;
border-top-right-radius: 30px;
z-index: 100;
transition: bottom 0.3s cubic-bezier(.2, .8, .2, 1);
padding: 12px 14px 24px;
box-shadow: var(--qs-shadow2);
}
.qs-sheet.active {
bottom: 0;
}
.qs-grab {
width: 44px;
height: 5px;
border-radius: 999px;
background: #d1d5db;
margin: 6px auto 12px;
}
.qs-sheet-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
padding-top: 10px;
}
.qs-sheet-tile {
padding: 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: #fafafa;
display: flex;
gap: 10px;
align-items: center;
cursor: pointer;
text-decoration: none;
color: inherit;
}
.qs-sheet-tile:hover {
background: #f0f4f8;
} .qs-toast {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 184px;
z-index: 120;
padding: 10px 16px;
border-radius: 999px;
background: rgba(17, 24, 39, .92);
color: white;
font-size: 13px;
font-weight: 600;
text-align: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
}
.qs-toast.show {
opacity: 1;
} .qs-view-enter {
opacity: 0;
transform: translateY(10px);
}
.qs-view-enter-active {
opacity: 1;
transform: translateY(0);
transition: opacity 0.3s, transform 0.3s;
} .qs-section-title {
margin: 16px 6px 10px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 950;
letter-spacing: .9px;
text-transform: uppercase;
}
.qs-card {
background: rgba(255, 255, 255, .86);
border: 1px solid var(--qs-line);
border-radius: var(--qs-r26);
box-shadow: var(--qs-shadow);
padding: 14px;
}
.qs-coverage {
border-radius: 28px;
padding: 14px;
background: radial-gradient(900px 300px at 10% 0%, rgba(19, 194, 138, .18), transparent 55%), radial-gradient(900px 300px at 100% 10%, rgba(55, 117, 184, .18), transparent 60%), rgba(255, 255, 255, .86);
border: 1px solid var(--qs-line);
box-shadow: var(--qs-shadow);
}
.qs-coverage-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 10px;
}
.qs-coverage-name {
font-weight: 950;
letter-spacing: -.2px;
}
.qs-coverage-meta {
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.3;
}
.qs-coverage-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 10px;
margin-top: 12px;
}
.qs-kpi {
padding: 12px;
border-radius: 18px;
background: rgba(255, 255, 255, .75);
border: 1px solid var(--qs-line);
}
.qs-kpi b {
display: block;
font-size: 16px;
letter-spacing: -.3px;
}
.qs-kpi span {
display: block;
font-size: 12px;
color: var(--qs-muted);
margin-top: 2px;
} .qs-grid2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.qs-grid3 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 10px;
}
.qs-tile {
padding: 12px;
border-radius: 22px;
background: rgba(255, 255, 255, .82);
border: 1px solid var(--qs-line);
box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
transition: transform var(--qs-t);
cursor: pointer;
color: inherit;
text-decoration: none;
}
.qs-tile:active {
transform: scale(.985);
}
.qs-tile b {
font-size: 13px;
}
.qs-tile span {
display: block;
margin-top: 2px;
font-size: 12px;
color: var(--qs-muted);
}
.qs-chev {
width: 34px;
height: 34px;
border-radius: 14px;
background: rgba(55, 117, 184, .10);
border: 1px solid rgba(55, 117, 184, .16);
display: grid;
place-items: center;
color: var(--qs-brand-2);
flex: 0 0 auto;
}
.qs-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.qs-item {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
padding: 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .78);
}
.qs-left {
display: flex;
gap: 12px;
align-items: center;
}
.qs-ic {
width: 40px;
height: 40px;
border-radius: 16px;
background: rgba(55, 117, 184, .12);
border: 1px solid rgba(55, 117, 184, .18);
display: grid;
place-items: center;
color: var(--qs-brand-2);
}
.qs-t1 {
font-weight: 900;
font-size: 14px;
}
.qs-t2 {
font-size: 12px;
color: var(--qs-muted);
margin-top: 2px;
}
.qs-pill {
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 900;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .85);
color: var(--qs-brand-2);
display: inline-flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.qs-pill-success {
background: rgba(19, 194, 138, .12);
border-color: rgba(19, 194, 138, .22);
color: #0f766e;
}
.qs-pill-warn {
background: rgba(255, 176, 32, .14);
border-color: rgba(255, 176, 32, .22);
color: #92400e;
}
.qs-pill-danger {
background: rgba(225, 29, 72, .12);
border-color: rgba(225, 29, 72, .22);
color: #9f1239;
} .qs-hero {
border-radius: var(--qs-r30);
padding: 16px;
background: radial-gradient(1000px 360px at 10% 0%, rgba(55, 117, 184, .26), transparent 56%), radial-gradient(900px 360px at 100% 30%, rgba(34, 87, 126, .20), transparent 60%), rgba(255, 255, 255, .84);
border: 1px solid var(--qs-line);
box-shadow: var(--qs-shadow2);
}
.qs-kicker {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
border-radius: 999px;
background: rgba(17, 24, 39, .08);
border: 1px solid rgba(17, 24, 39, .10);
font-size: 12px;
font-weight: 950;
color: rgba(17, 24, 39, .86);
user-select: none;
}
.qs-hero h2 {
margin: 10px 0 6px;
font-size: 18px;
letter-spacing: -.35px;
}
.qs-hero p {
margin: 0;
color: var(--qs-muted);
font-size: 13px;
line-height: 1.35;
font-weight: 750;
}
.qs-tabs-inline {
display: flex;
gap: 8px;
flex-wrap: wrap;
padding: 6px;
border-radius: 20px;
background: rgba(255, 255, 255, .78);
border: 1px solid var(--qs-line);
}
.qs-tab-inline {
flex: 1;
min-width: 100px;
padding: 10px 12px;
border-radius: 16px;
border: 1px solid transparent;
background: transparent;
color: var(--qs-muted);
font-weight: 950;
cursor: pointer;
transition: background var(--qs-t), color var(--qs-t);
}
.qs-tab-inline.active {
background: rgba(55, 117, 184, .10);
border-color: rgba(55, 117, 184, .16);
color: var(--qs-brand-2);
}
.qs-filters {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 12px;
}
.qs-empty {
padding: 18px;
border-radius: var(--qs-r30);
border: 1px dashed rgba(91, 91, 96, .25);
background: rgba(255, 255, 255, .72);
text-align: center;
}
.qs-empty b {
display: block;
font-size: 14px;
}
.qs-empty span {
display: block;
margin-top: 6px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.35;
font-weight: 750;
} .qs-progress {
margin-top: 12px;
padding: 10px 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .84);
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
width: 100%;
}
.qs-steps {
display: flex;
gap: 8px;
align-items: center;
}
.qs-dot {
width: 10px;
height: 10px;
border-radius: 99px;
background: rgba(91, 91, 96, .25);
}
.qs-dot.on {
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
}
.qs-choice {
padding: 14px 12px;
border-radius: 24px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .86);
box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
cursor: pointer;
user-select: none;
transition: transform var(--qs-t), border var(--qs-t), background var(--qs-t);
display: flex;
gap: 12px;
align-items: flex-start;
}
.qs-choice:active {
transform: scale(.99);
}
.qs-choice.active {
border-color: rgba(55, 117, 184, .45);
background: rgba(55, 117, 184, .08);
}
.qs-choice b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-choice span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.3;
font-weight: 800;
}
.qs-meta {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 10px;
}
.qs-tag {
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 950;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .90);
color: var(--qs-brand-2);
user-select: none;
}
.qs-tag.ok {
border-color: rgba(19, 194, 138, .22);
background: rgba(19, 194, 138, .12);
color: #0f766e;
}
.qs-tag.warn {
border-color: rgba(255, 176, 32, .22);
background: rgba(255, 176, 32, .12);
color: #92400e;
}
.qs-hint {
margin-top: 12px;
padding: 10px 12px;
border-radius: 18px;
background: rgba(255, 255, 255, .75);
border: 1px dashed rgba(91, 91, 96, .25);
color: var(--qs-muted);
font-size: 12px;
line-height: 1.35;
font-weight: 800;
}
.qs-field {
margin-top: 12px;
}
.qs-helper {
font-size: 12px;
color: var(--qs-muted);
margin: 10px 6px 0;
line-height: 1.35;
font-weight: 800;
}
.qs-mode {
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .82);
box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
cursor: pointer;
user-select: none;
transition: transform var(--qs-t), border var(--qs-t), background var(--qs-t);
display: flex;
flex-direction: column;
gap: 8px;
min-height: 110px;
}
.qs-mode:active {
transform: scale(.99);
}
.qs-mode.active {
border-color: rgba(55, 117, 184, .45);
background: rgba(55, 117, 184, .08);
}
.qs-mode b {
font-size: 13px;
letter-spacing: -.2px;
}
.qs-mode span {
font-size: 12px;
color: var(--qs-muted);
line-height: 1.25;
font-weight: 800;
}
.qs-badge {
align-self: flex-start;
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 950;
border: 1px solid var(--qs-line);
background: rgba(55, 117, 184, .10);
color: var(--qs-brand-2);
}
.qs-badge.video {
background: rgba(55, 117, 184, .10);
border-color: rgba(55, 117, 184, .16);
}
.qs-badge.phone {
background: rgba(19, 194, 138, .10);
border-color: rgba(19, 194, 138, .18);
color: #0f766e;
}
.qs-badge.pres {
background: rgba(255, 176, 32, .12);
border-color: rgba(255, 176, 32, .20);
color: #92400e;
}
.qs-picker {
margin-top: 12px;
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .82);
display: flex;
gap: 10px;
align-items: center;
}
.qs-picker input {
flex: 1;
border: 0;
outline: none;
background: transparent;
font-size: 14px;
font-weight: 850;
color: var(--qs-text);
}
.qs-prefs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 12px;
}
.qs-pref {
padding: 14px 12px;
border-radius: 24px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .86);
box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
cursor: pointer;
user-select: none;
transition: transform var(--qs-t), border var(--qs-t), background var(--qs-t);
display: flex;
gap: 12px;
align-items: flex-start;
}
.qs-pref:active {
transform: scale(.99);
}
.qs-pref.active {
border-color: rgba(55, 117, 184, .45);
background: rgba(55, 117, 184, .08);
}
.qs-pref b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-pref span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.3;
font-weight: 800;
}
.qs-slots {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 12px;
}
.qs-slot {
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .78);
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
cursor: pointer;
user-select: none;
transition: transform var(--qs-t), border var(--qs-t), background var(--qs-t);
}
.qs-slot:active {
transform: scale(.99);
}
.qs-slot.active {
border-color: rgba(55, 117, 184, .45);
background: rgba(55, 117, 184, .08);
}
.qs-sid {
width: 40px;
height: 40px;
border-radius: 16px;
background: rgba(55, 117, 184, .12);
border: 1px solid rgba(55, 117, 184, .18);
display: grid;
place-items: center;
color: var(--qs-brand-2);
flex: 0 0 auto;
}
.qs-tag.alt {
background: rgba(255, 176, 32, .12);
border-color: rgba(255, 176, 32, .20);
color: #92400e;
}
.qs-modal {
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: -120%;
width: min(640px, 100vw);
background: rgba(255, 255, 255, .96);
border: 1px solid var(--qs-line);
border-top-left-radius: 30px;
border-top-right-radius: 30px;
box-shadow: var(--qs-shadow2);
z-index: 130;
transition: bottom 260ms cubic-bezier(.2, .8, .2, 1);
padding: 12px 14px calc(16px + env(safe-area-inset-bottom, 0px));
max-height: calc(100vh - 22px);
overflow: auto;
}
.qs-modal.active {
bottom: 0;
}
.qs-modal-head {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
padding: 0 2px 10px;
}
.qs-modal-head b {
font-size: 14px;
letter-spacing: -.2px;
}
.qs-frame {
width: 100%;
height: 70vh;
border: 0;
border-radius: 22px;
background: rgba(246, 248, 251, .95);
border: 1px solid var(--qs-line);
}
.qs-embed-note {
margin-top: 10px;
padding: 10px 12px;
border-radius: 18px;
background: rgba(255, 255, 255, .75);
border: 1px dashed rgba(91, 91, 96, .25);
color: var(--qs-muted);
font-size: 12px;
line-height: 1.35;
font-weight: 800;
}
.qs-summary-block {
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .78);
}
.qs-summary-block b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-summary-block span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.3;
font-weight: 800;
}
.qs-next {
padding: 14px;
border-radius: var(--qs-r30);
border: 1px solid var(--qs-line);
background: radial-gradient(900px 300px at 10% 0%, rgba(55, 117, 184, .18), transparent 55%), radial-gradient(900px 300px at 100% 10%, rgba(255, 176, 32, .14), transparent 60%), rgba(255, 255, 255, .86);
box-shadow: var(--qs-shadow);
}
.qs-next b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-next span {
display: block;
margin-top: 6px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.35;
font-weight: 800;
}
.qs-chips {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 10px;
}
.qs-chip {
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 950;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .90);
color: var(--qs-brand-2);
user-select: none;
white-space: nowrap;
}
.qs-chip.ok {
background: rgba(19, 194, 138, .12);
border-color: rgba(19, 194, 138, .22);
color: #0f766e;
} .qs-video-wrap {
border-radius: var(--qs-r26);
border: 1px solid var(--qs-line);
background: rgba(15, 23, 42, .70);
box-shadow: var(--qs-shadow);
overflow: hidden;
position: relative;
min-height: 320px;
}
.qs-video-head {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
z-index: 10;
background: linear-gradient(180deg, rgba(11, 18, 32, .82), rgba(11, 18, 32, 0));
}
.qs-video-acts {
display: flex;
gap: 8px;
align-items: center;
flex-wrap: wrap;
}
.qs-daily-cont {
position: absolute;
inset: 0;
display: grid;
place-items: center;
color: rgba(232, 238, 252, .78);
font-weight: 900;
}
.qs-panel-top {
padding: 12px;
border-bottom: 1px solid var(--qs-line);
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 10px;
background: rgba(17, 28, 51, .05);
}
.qs-panel-top b {
font-size: 14px;
letter-spacing: -.2px;
}
.qs-panel-top span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
line-height: 1.3;
}
.qs-tabs-ui {
display: flex;
gap: 8px;
padding: 10px 12px;
border-bottom: 1px solid var(--qs-line);
background: rgba(17, 28, 51, .02);
}
.qs-tab-btn {
flex: 1;
padding: 10px;
border-radius: 16px;
border: 1px solid transparent;
background: rgba(255, 255, 255, .06);
color: var(--qs-text);
font-weight: 950;
cursor: pointer;
user-select: none;
transition: transform var(--qs-t), background var(--qs-t), border var(--qs-t);
font-size: 13px;
}
.qs-tab-btn:active {
transform: scale(.99);
}
.qs-tab-btn.active {
background: rgba(55, 117, 184, .12);
border-color: rgba(55, 117, 184, .28);
}
.qs-check-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
padding: 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .06);
margin-top: 10px;
}
.qs-check-row b {
font-size: 13px;
}
.qs-check-row span {
display: block;
margin-top: 3px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
line-height: 1.25;
}
.qs-status-dot {
width: 10px;
height: 10px;
border-radius: 99px;
background: rgba(255, 176, 32, .95);
box-shadow: 0 0 0 4px rgba(255, 176, 32, .18);
flex: 0 0 auto;
}
.qs-status-dot.ok {
background: rgba(19, 194, 138, .95);
box-shadow: 0 0 0 4px rgba(19, 194, 138, .18);
}
.qs-status-dot.bad {
background: rgba(225, 29, 72, .95);
box-shadow: 0 0 0 4px rgba(225, 29, 72, .18);
}
.qs-toggle {
width: 46px;
height: 26px;
border-radius: 999px;
background: rgba(255, 255, 255, .12);
border: 1px solid var(--qs-line);
position: relative;
cursor: pointer;
user-select: none;
transition: background var(--qs-t);
flex: 0 0 auto;
}
.qs-toggle::after {
content: "";
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
position: absolute;
top: 2px;
left: 2px;
transition: left var(--qs-t);
opacity: .92;
}
.qs-toggle.on {
background: rgba(55, 117, 184, .30);
}
.qs-toggle.on::after {
left: 24px;
}
.qs-chat-list {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 12px;
}
.qs-msg {
max-width: 92%;
padding: 10px 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .6);
font-weight: 850;
line-height: 1.35;
align-self: flex-start;
}
.qs-msg.me {
align-self: flex-end;
background: rgba(55, 117, 184, .12);
border-color: rgba(55, 117, 184, .20);
}
.qs-composer {
display: flex;
gap: 10px;
align-items: flex-end;
}
.qs-textarea {
flex: 1;
min-height: 44px;
max-height: 140px;
padding: 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .7);
color: var(--qs-text);
outline: none;
font-weight: 850;
resize: none;
font-family: inherit;
}
.qs-drop {
padding: 14px;
border-radius: 22px;
border: 1px dashed rgba(91, 91, 96, .25);
background: rgba(255, 255, 255, .5);
text-align: center;
}
.qs-drop b {
display: block;
font-size: 13px;
}
.qs-drop span {
display: block;
margin-top: 6px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
line-height: 1.35;
}
.qs-files {
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 10px;
}
.qs-file {
padding: 10px 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .7);
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
font-weight: 850;
}
.qs-file small {
color: var(--qs-muted);
font-weight: 850;
}
.qs-safety {
margin-top: 12px;
padding: 12px;
border-radius: 22px;
border: 1px dashed rgba(225, 29, 72, .28);
background: rgba(225, 29, 72, .10);
color: #9f1239;
}
.qs-safety b {
display: block;
font-size: 13px;
}
.qs-safety span {
display: block;
margin-top: 6px;
font-size: 12px;
color: #be123c;
line-height: 1.35;
font-weight: 850;
} .qs-search-bar {
display: flex;
gap: 10px;
align-items: center;
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .82);
}
.qs-search-bar input {
flex: 1;
border: 0;
outline: none;
background: transparent;
font-size: 14px;
font-weight: 850;
color: var(--qs-text);
min-width: 0;
}
.qs-filters-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 12px;
}
.qs-doc {
padding: 12px;
border-radius: 26px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .86);
display: flex;
gap: 12px;
align-items: flex-start;
cursor: pointer;
transition: transform var(--qs-t);
}
.qs-doc:active {
transform: scale(.99);
}
.qs-doc-main {
flex: 1;
min-width: 0;
}
.qs-doc-main b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-doc-main span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
line-height: 1.25;
}
.qs-cta-col {
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-end;
flex: 0 0 auto;
} .qs-hero-profile {
border-radius: var(--qs-r30);
padding: 16px;
background: rgba(255, 255, 255, .88);
border: 1px solid var(--qs-line);
box-shadow: var(--qs-shadow);
position: relative;
overflow: hidden;
}
.qs-hero-top {
display: flex;
gap: 12px;
align-items: center;
}
.qs-who {
min-width: 0;
}
.qs-who b {
display: block;
font-size: 16px;
letter-spacing: -.2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.qs-who span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
line-height: 1.25;
}
.qs-badges {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 10px;
}
.qs-cta-bar {
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: calc(78px + env(safe-area-inset-bottom, 0px));
width: min(560px, calc(100vw - 18px));
padding: 10px;
border-radius: 26px;
background: rgba(255, 255, 255, .88);
border: 1px solid var(--qs-line);
box-shadow: var(--qs-shadow2);
backdrop-filter: blur(16px);
display: flex;
gap: 10px;
z-index: 90;
}
.qs-about {
font-size: 13px;
color: var(--qs-text);
line-height: 1.45;
font-weight: 750;
}
.qs-about p {
margin: 0;
}
.qs-about ul {
margin: 10px 0 0 18px;
color: var(--qs-muted);
font-size: 12px;
line-height: 1.35;
font-weight: 850;
}
.qs-about li {
margin: 6px 0;
}
.qs-review {
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .78);
margin-bottom: 10px;
}
.qs-review b {
display: block;
font-size: 13px;
}
.qs-review span {
display: block;
margin-top: 6px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
line-height: 1.35;
} .qs-balance {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
padding: 14px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .78);
}
.qs-balance b {
font-size: 18px;
}
.qs-balance span {
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
}
.qs-method,
.qs-payment,
.qs-receipt {
display: flex;
gap: 12px;
align-items: flex-start;
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .86);
margin-bottom: 10px;
}
.qs-method {
align-items: center;
background: rgba(255, 255, 255, .78);
}
.qs-receipt {
border-radius: 26px;
box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
cursor: pointer;
}
.qs-main-info b {
display: block;
font-size: 14px;
}
.qs-main-info span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
font-weight: 850;
}
.qs-cta-col {
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-end;
}
.qs-mini-btn {
border: 1px solid var(--qs-line);
background: #fff;
color: var(--qs-brand-2);
border-radius: 14px;
padding: 8px 10px;
font-weight: 950;
font-size: 12px;
cursor: pointer;
}
.qs-search {
margin-top: 12px;
display: flex;
gap: 10px;
align-items: center;
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .82);
}
.qs-search input {
flex: 1;
border: 0;
outline: none;
background: transparent;
font-size: 14px;
font-weight: 850;
} .qs-switch {
width: 46px;
height: 26px;
border-radius: 999px;
background: rgba(55, 117, 184, .18);
position: relative;
cursor: pointer;
flex: 0 0 auto;
transition: background var(--qs-t);
user-select: none;
}
.qs-switch::after {
content: "";
width: 22px;
height: 22px;
border-radius: 50%;
background: white;
position: absolute;
top: 2px;
left: 2px;
transition: left var(--qs-t);
box-shadow: 0 10px 26px rgba(17, 24, 39, .12);
}
.qs-switch.on {
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
}
.qs-switch.on::after {
left: 22px;
} .qs-contact {
display: flex;
gap: 12px;
align-items: center;
padding: 12px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .78);
margin-bottom: 10px;
}
.qs-emergency {
display: flex;
gap: 12px;
align-items: center;
padding: 14px;
border-radius: 22px;
background: linear-gradient(135deg, #fee2e2, #fecaca);
border: 1px solid #fecaca;
}
.qs-emergency b {
font-size: 14px;
}
.qs-emergency span {
font-size: 12px;
color: #7f1d1d;
font-weight: 850;
} .qs-sev {
padding: 14px 12px;
border-radius: 24px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .86);
box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
cursor: pointer;
user-select: none;
transition: transform var(--qs-t), border var(--qs-t), background var(--qs-t);
display: flex;
gap: 12px;
align-items: flex-start;
}
.qs-sev:active {
transform: scale(.99);
}
.qs-sev.active {
border-color: rgba(225, 29, 72, .45);
background: rgba(225, 29, 72, .06);
}
.qs-sev b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-sev span {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.3;
font-weight: 800;
} .qs-chat-area {
flex: 1;
overflow: auto;
padding: 14px 14px 12px 14px;
scroll-behavior: smooth;
display: flex;
flex-direction: column;
}
.qs-banner {
border-radius: var(--qs-r30);
padding: 14px;
background: radial-gradient(1000px 360px at 10% 0%, rgba(55, 117, 184, .22), transparent 56%), radial-gradient(900px 360px at 100% 30%, rgba(34, 87, 126, .16), transparent 60%), rgba(255, 255, 255, .86);
border: 1px solid var(--qs-line);
box-shadow: var(--qs-shadow);
margin-bottom: 12px;
}
.qs-banner b {
display: block;
font-size: 14px;
letter-spacing: -.2px;
}
.qs-banner span {
display: block;
margin-top: 6px;
font-size: 12px;
color: var(--qs-muted);
line-height: 1.35;
font-weight: 800;
}
.qs-ai-msg {
display: flex;
gap: 10px;
margin: 10px 0;
align-items: flex-end;
}
.qs-ai-msg.user {
justify-content: flex-end;
}
.qs-ai-bubble {
max-width: 82%;
padding: 12px 12px;
border-radius: 18px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .92);
box-shadow: 0 10px 26px rgba(17, 24, 39, .06);
font-size: 14px;
line-height: 1.35;
font-weight: 800;
color: var(--qs-text);
white-space: pre-wrap;
}
.qs-ai-msg.user .qs-ai-bubble {
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
color: white;
border-color: rgba(55, 117, 184, .25);
}
.qs-ai-avatar {
width: 34px;
height: 34px;
border-radius: 14px;
display: grid;
place-items: center;
background: rgba(55, 117, 184, .12);
border: 1px solid rgba(55, 117, 184, .18);
color: var(--qs-brand-2);
font-weight: 950;
flex: 0 0 auto;
user-select: none;
}
.qs-ai-meta {
font-size: 11px;
color: rgba(91, 91, 96, .9);
margin-top: 6px;
font-weight: 850;
}
.qs-cardout {
margin: 10px 0 6px;
border-radius: 22px;
border: 1px solid var(--qs-line);
background: rgba(255, 255, 255, .86);
box-shadow: var(--qs-shadow);
padding: 12px;
}
.qs-cardout h3 {
margin: 0;
font-size: 13px;
letter-spacing: -.2px;
}
.qs-cardout ul {
margin: 8px 0 0 18px;
padding: 0;
color: var(--qs-muted);
font-size: 12px;
line-height: 1.35;
font-weight: 850;
}
.qs-ai-composer {
padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)) 14px;
border-top: 1px solid var(--qs-line);
background: rgba(246, 248, 251, .82);
backdrop-filter: blur(16px);
}
.qs-toolbar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
margin-top: 8px;
color: var(--qs-muted);
font-size: 12px;
font-weight: 850;
}
.qs-minilink {
color: var(--qs-brand-2);
font-weight: 950;
cursor: pointer;
user-select: none;
}  .qs-app-wrapper {
--qs-ok: #0f766e;
--qs-error: #e11d48;
--qs-panel: rgba(255,255,255,.86);
--qs-bg-alt: rgba(246,248,251,.94);
} .qs-btn-sm {
padding: 7px 12px;
font-size: 13px;
border-radius: 12px;
} .qs-btn-secondary {
background: rgba(55,117,184,.10);
border: 1px solid rgba(55,117,184,.20);
color: var(--qs-brand-2);
}
.qs-btn-danger {
background: var(--qs-danger);
color: #fff;
}
.qs-btn-danger-light {
background: rgba(225,29,72,.10);
border: 1px solid rgba(225,29,72,.20);
color: #9f1239;
} .qs-wrap {
animation: qsSlideIn 260ms cubic-bezier(.2,.8,.2,1) both;
}
@keyframes qsSlideIn {
from { opacity: 0; transform: translateY(8px); }
to   { opacity: 1; transform: translateY(0); }
} .qs-spin {
animation: qsSpin 1s linear infinite;
display: inline-block;
}
@keyframes qsSpin {
to { transform: rotate(360deg); }
} .qs-loader-inline {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
padding: 40px;
text-align: center;
color: var(--qs-muted);
font-size: 13px;
font-weight: 850;
}
.qs-loader {
display: inline-block;
width: 28px;
height: 28px;
border: 3px solid rgba(55,117,184,.2);
border-top-color: var(--qs-brand);
border-radius: 50%;
animation: qsSpin 0.75s linear infinite;
} .qs-spinner {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--qs-muted);
font-size: 14px;
font-weight: 850;
} .qs-error-wrap {
padding: 40px 20px;
text-align: center;
}
.qs-error-wrap h3 {
color: var(--qs-danger);
margin-bottom: 8px;
}
.qs-error-wrap p {
font-size: 13px;
color: var(--qs-muted);
} .qs-badge-success {
background: rgba(19,194,138,.12);
border: 1px solid rgba(19,194,138,.22);
color: #065f46;
padding: 4px 10px;
border-radius: 999px;
font-size: 11px;
font-weight: 950;
}
.qs-badge-warning {
background: rgba(255,176,32,.12);
border: 1px solid rgba(255,176,32,.22);
color: #92400e;
padding: 4px 10px;
border-radius: 999px;
font-size: 11px;
font-weight: 950;
}
.qs-badge-danger {
background: rgba(225,29,72,.10);
border: 1px solid rgba(225,29,72,.18);
color: #9f1239;
padding: 4px 10px;
border-radius: 999px;
font-size: 11px;
font-weight: 950;
} .qs-pill.ok {
background: rgba(19,194,138,.12);
border-color: rgba(19,194,138,.22);
color: #0f766e;
}
.qs-pill.info {
background: rgba(55,117,184,.10);
border-color: rgba(55,117,184,.18);
color: var(--qs-brand-2);
} .qs-empty-state {
padding: 40px 20px;
text-align: center;
color: var(--qs-muted);
border-radius: var(--qs-r22);
}
.qs-empty-state i {
display: block;
margin: 0 auto 12px;
opacity: .35;
}
.qs-empty-state b {
display: block;
font-size: 14px;
color: var(--qs-text);
}
.qs-empty-state span {
display: block;
font-size: 12px;
margin-top: 6px;
line-height: 1.4;
} .qs-switch {
position: relative;
display: inline-flex;
width: 46px;
height: 26px;
flex: 0 0 auto;
cursor: pointer;
}
.qs-switch input {
opacity: 0;
width: 0;
height: 0;
position: absolute;
}
.qs-slider {
position: absolute;
inset: 0;
border-radius: 999px;
background: rgba(155,155,165,.3);
transition: background var(--qs-t);
}
.qs-slider::after {
content: "";
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
top: 3px;
left: 3px;
transition: left var(--qs-t);
box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.qs-switch input:checked + .qs-slider {
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
}
.qs-switch input:checked + .qs-slider::after {
left: 23px;
} .qs-row-item {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
transition: background var(--qs-t);
}
.qs-row-item:hover {
background: rgba(55,117,184,.04);
} .qs-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
} .qs-clickable-item {
transition: background var(--qs-t), transform var(--qs-t);
}
.qs-clickable-item:hover {
background: rgba(55,117,184,.05);
}
.qs-clickable-item:active {
transform: scale(.99);
} .qs-user-msg {
display: flex;
justify-content: flex-end;
margin: 10px 0;
}
.qs-user-bubble {
max-width: 82%;
padding: 12px;
border-radius: 18px;
background: linear-gradient(135deg, var(--qs-brand), var(--qs-brand-2));
color: #fff;
font-size: 14px;
line-height: 1.35;
font-weight: 800;
} @media (max-width: 360px) {
.qs-grid2,
.qs-grid,
.qs-prefs {
grid-template-columns: 1fr;
}
}