.tas-shell,
.tas-admin {
    --tas-ink: #101010;
    --tas-text: #242424;
    --tas-muted: #5f5f5f;
    --tas-soft: #8d8d8d;
    --tas-line: #e8e1cf;
    --tas-line-strong: #d7c89d;
    --tas-card: #ffffff;
    --tas-page: #fffdf6;
    --tas-accent: #111111;
    --tas-focus: #ffd21a;
    --tas-warm: #fff4bf;
    --tas-shadow: 0 22px 55px rgba(17, 17, 17, 0.1);
    --tas-shadow-strong: 0 28px 70px rgba(17, 17, 17, 0.16);
    color: var(--tas-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.tas-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 18px 70px;
    background: transparent;
}

.tas-shell [hidden] {
    display: none !important;
}

.tas-offers {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 42px 32px 46px;
    border: 1px solid rgba(228, 231, 236, 0.9);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, #ffffff 46%, #f9fafb 100%);
    box-shadow:
        var(--tas-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tas-offers::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #111827 0%, #f6c453 50%, #111827 100%);
    opacity: 0.95;
}

.tas-offers > * {
    position: relative;
    z-index: 1;
}

.tas-heading-center {
    max-width: 850px;
    margin: 0 auto 38px;
    text-align: center;
}

.tas-heading h2,
.tas-heading h3,
.tas-heading p {
    margin: 0;
}

.tas-heading h2 {
    color: var(--tas-ink);
    font-size: 43px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.tas-heading p {
    margin-top: 14px;
    color: #475467;
    font-size: 18px;
    line-height: 1.55;
    text-wrap: pretty;
}

.tas-category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
}

.tas-category-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex: 0 1 264px;
    width: 100%;
    max-width: 264px;
    min-height: 292px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    border: 1px solid var(--tas-line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    color: var(--tas-ink);
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.04),
        0 18px 42px rgba(16, 24, 40, 0.075);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tas-shell button.tas-category-card {
    flex: 0 1 264px;
    width: 100%;
    max-width: 264px;
    min-height: 292px;
    padding: 24px;
    border: 1px solid var(--tas-line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    color: var(--tas-ink);
}

.tas-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(246, 196, 83, 0.2) 0%, rgba(255, 255, 255, 0) 42%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.tas-category-card::after {
    content: "";
    position: absolute;
    inset: 24px auto 24px 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: var(--tas-focus);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transform: scaleY(0.45);
    transition: opacity 160ms ease, transform 160ms ease;
}

.tas-category-card:hover,
.tas-category-card.is-active {
    transform: translateY(-6px);
    border-color: #111827;
    background: #ffffff;
    box-shadow:
        0 2px 4px rgba(16, 24, 40, 0.05),
        var(--tas-shadow-strong);
}

.tas-shell button.tas-category-card.is-active {
    border-color: #111827;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.tas-category-card.is-active::after,
.tas-category-card:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.tas-category-card.is-active::before,
.tas-category-card:hover::before {
    opacity: 1;
}

.tas-category-icon {
    --tas-icon-scale: 1;
    position: relative;
    z-index: 1;
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid #eef1f5;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
    font-size: 34px;
    line-height: 1;
    box-shadow:
        0 10px 24px rgba(16, 24, 40, 0.06),
        inset 0 -12px 24px rgba(16, 24, 40, 0.04);
    animation: tas-icon-float 5.2s ease-in-out infinite;
    transform-origin: center;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tas-category-icon > img.tas-airport-icon {
    display: block;
    width: 34px;
    height: 34px;
    max-width: none;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.tas-category-card:nth-child(2n) .tas-category-icon {
    animation-delay: -1.3s;
}

.tas-category-card:nth-child(3n) .tas-category-icon {
    animation-delay: -2.4s;
}

.tas-category-card:hover .tas-category-icon,
.tas-category-card.is-active .tas-category-icon {
    --tas-icon-scale: 1.08;
    border-color: #e6b241;
    background: linear-gradient(180deg, #fff7df 0%, #f6c453 100%);
}

.tas-category-card strong {
    position: relative;
    z-index: 1;
    max-width: 100%;
    color: var(--tas-ink);
    font-size: 25px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.tas-category-copy {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    color: var(--tas-muted);
    font-size: 16px;
    line-height: 1.62;
    text-wrap: pretty;
}

.tas-category-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 9px 10px 9px 14px;
    border: 1px solid #e7ebf0;
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
    font-size: 16px;
    font-weight: 760;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tas-category-card:hover .tas-category-action,
.tas-category-card.is-active .tas-category-action {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.18);
}

.tas-category-action span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #eef2f6;
    color: #111827;
    line-height: 1;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.tas-category-card:hover .tas-category-action span,
.tas-category-card.is-active .tas-category-action span {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.tas-route-panels {
    max-width: 1140px;
    margin: 32px auto 0;
}

.tas-route-panel {
    display: none;
    padding: 30px;
    border: 1px solid rgba(228, 231, 236, 0.92);
    border-radius: 26px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.04),
        0 22px 50px rgba(16, 24, 40, 0.08);
}

.tas-route-panel.is-active {
    display: grid;
    gap: 14px;
}

.tas-route-panel-heading {
    display: flex;
    margin-bottom: 8px;
    padding-bottom: 18px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #eef2f6;
}

.tas-route-panel-heading span {
    display: none;
}

.tas-route-panel-heading h3 {
    margin: 0;
    color: var(--tas-ink);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 820;
    letter-spacing: 0;
}

.tas-route-panel-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--tas-muted);
    font-size: 15.5px;
    line-height: 1.45;
    text-align: right;
}

.tas-route-list-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding: 0 20px 2px;
    color: var(--tas-soft);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tas-route-list-head span:last-child {
    min-width: 160px;
    text-align: right;
}

.tas-route-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 22px;
    width: 100%;
    padding: 19px 20px;
    border: 1px solid #eaecf0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    color: var(--tas-ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
    transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.tas-shell button.tas-route-card {
    border: 1px solid #eaecf0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    color: var(--tas-ink);
}

.tas-route-card:hover,
.tas-route-card.is-selected {
    transform: translateY(-2px);
    border-color: #111827;
    background: #fcfcfd;
    box-shadow: 0 16px 32px rgba(16, 24, 40, 0.08);
}

.tas-route-card.is-selected {
    border-color: #e6b241;
    background: linear-gradient(135deg, #fff8e6 0%, #ffffff 58%);
    box-shadow: 0 18px 36px rgba(180, 83, 9, 0.12);
}

.tas-route-kicker {
    grid-column: 1 / -1;
    color: var(--tas-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tas-route-main {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tas-route-main strong {
    color: var(--tas-ink);
    font-size: 18.5px;
    font-weight: 780;
}

.tas-route-main span {
    color: #9aa3af;
    font-weight: 800;
}

.tas-route-price {
    display: grid;
    gap: 4px;
    justify-items: end;
    white-space: nowrap;
}

.tas-route-price span,
.tas-route-description {
    color: var(--tas-muted);
}

.tas-shell .tas-route-card .tas-route-price > strong {
    display: inline-flex;
    min-height: 34px;
    padding: 5px 0;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-size: 20px;
    font-weight: 850;
    box-shadow: none;
    text-shadow: none;
}

.tas-route-description {
    grid-column: 1 / -1;
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    font-size: 14.5px;
    line-height: 1.75;
    text-wrap: pretty;
    overflow-wrap: break-word;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.tas-empty-routes {
    padding: 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--tas-muted);
    font-size: 15px;
    line-height: 1.45;
}

.tas-panel {
    max-width: 1140px;
    margin: 26px auto 0;
    padding: 30px;
    border: 1px solid rgba(228, 231, 236, 0.92);
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.04),
        0 22px 50px rgba(16, 24, 40, 0.08);
}

.tas-panel .tas-heading {
    margin-bottom: 20px;
}

.tas-panel .tas-heading span {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--tas-soft);
    font-size: 13px;
    font-weight: 800;
}

.tas-panel .tas-heading h2 {
    font-size: 27px;
}

.tas-panel .tas-heading p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.62;
    text-wrap: pretty;
}

.tas-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.tas-form p {
    display: grid;
    gap: 7px;
    margin: 0;
}

.tas-form label {
    color: #253041;
    font-size: 14px;
    font-weight: 760;
}

.tas-form input,
.tas-form textarea,
.tas-form select,
.tas-primary {
    font: inherit;
}

.tas-form input,
.tas-form textarea,
.tas-form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #d5dbe5;
    border-radius: 16px;
    background: #ffffff;
    color: var(--tas-ink);
    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.tas-form input[type="datetime-local"] {
    color-scheme: light;
    font-weight: 700;
}

.tas-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    width: 22px;
    height: 22px;
    padding: 4px;
    border-radius: 999px;
    background-color: #fff3c4;
    cursor: pointer;
}

.tas-form input:focus,
.tas-form textarea:focus,
.tas-form select:focus {
    outline: 3px solid rgba(246, 196, 83, 0.24);
    border-color: #d39b20;
    background: #ffffff;
    box-shadow:
        0 0 0 1px rgba(211, 155, 32, 0.1),
        0 12px 24px rgba(16, 24, 40, 0.08);
}

.tas-form textarea {
    min-height: 92px;
    resize: vertical;
}

.tas-address-box {
    display: grid;
    gap: 8px;
}

.tas-address-status,
.tas-address-attribution {
    color: var(--tas-soft);
    font-size: 12.5px;
    line-height: 1.35;
}

.tas-address-results {
    display: grid;
    gap: 7px;
    padding: 8px;
    border: 1px solid var(--tas-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.13);
}

.tas-address-results[hidden] {
    display: none !important;
}

.tas-address-result {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--tas-ink);
    font: inherit;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.tas-address-result:hover {
    border-color: var(--tas-line-strong);
    background: #ffffff;
    transform: translateX(2px);
}

.tas-custom-questions {
    display: grid;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e7ebf0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tas-custom-questions[hidden] {
    display: none !important;
}

.tas-custom-questions-heading {
    color: var(--tas-ink);
    font-size: 17px;
    font-weight: 850;
}

.tas-custom-questions p {
    margin: 0;
}

.tas-booking-price-bar {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding: 18px 20px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e6b241;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff8e6 0%, #ffffff 62%);
    box-shadow: 0 16px 34px rgba(180, 83, 9, 0.11);
}

.tas-booking-price-bar div {
    display: grid;
    gap: 5px;
}

.tas-booking-price-bar span {
    color: #7c5c11;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tas-booking-price-bar strong {
    color: #111827;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
}


.tas-booking-price-bar small {
    max-width: 320px;
    color: var(--tas-muted);
    font-size: 14px;
    line-height: 1.45;
    text-align: right;
}

.tas-full {
    grid-column: 1 / -1;
}

.tas-return { margin: 8px 0 0; border-block: 1px solid #dce5df; }
.tas-return-toggle { display: flex !important; align-items: center; gap: 14px; padding: 20px 0; margin: 0 !important; cursor: pointer; }
.tas-return-toggle input[type="checkbox"] { width: 22px; height: 22px; min-height: 0; flex: 0 0 22px; accent-color: #326a4e; padding: 0; }
.tas-return-toggle > span { display: grid; gap: 6px; }
.tas-return-toggle strong { font-size: 17px; color: #202e25; }
.tas-return-toggle small { font-size: 13px; color: #506159; font-weight: 400; }
.tas-return-symbol { margin-left: auto; font-size: 24px; color: #326a4e; }
.tas-return-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: 0 0 24px; }
.tas-return-summary { color: #506159; overflow-wrap: anywhere; }
.tas-return .tas-custom-questions { padding: 0; border: 0; background: transparent; }
.tas-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.tas-form-grid > *, .tas-return-details > * { min-width: 0; }
.tas-form input, .tas-form textarea, .tas-form select { max-width: 100%; min-width: 0; }
#tas_notice_time { display: block; margin-top: 8px; color: #58645d; font-size: 12px; }
.tas-shell :focus-visible, .tas-assistant :focus-visible { outline: 3px solid #52836b; outline-offset: 3px; }
.tas-assistant [hidden] { display: none !important; }
.tas-chat-preview { position: absolute; bottom: calc(100% + 12px); right: 0; width: 240px; max-width: calc(100vw - 40px); padding: 14px 16px; background: #ffffff; border: 1px solid #dce5df; border-radius: 8px; color: #303d35; font-size: 14px; line-height: 1.5; box-shadow: 0 8px 28px #172f231a; }
.tas-chat-contact { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.tas-chat-contact a { color: #246344; text-decoration: underline; }
.tas-page-choices { display: grid; gap: 10px; max-height: 230px; overflow: auto; padding: 8px; border: 1px solid #dcdcde; background: #fff; }
.tas-assistant-admin { max-width: 1100px; }
.tas-source-list { display: grid; gap: 12px; margin: 20px 0; }
.tas-source-item { border: 1px solid #dcdcde; border-radius: 6px; background: #fff; }
.tas-source-item summary { display: flex; align-items: center; gap: 16px; padding: 18px; cursor: pointer; flex-wrap: wrap; }
.tas-source-item summary strong { flex: 1; overflow-wrap: anywhere; min-width: 180px; }
.tas-source-item form { padding: 0 18px 18px; }
.tas-source-item a { overflow-wrap: anywhere; }
.tas-source-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.tas-source-error { color: #b32d2e; }

.tas-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 18px;
    padding: 0 24px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827 0%, #0f172a 55%, #2f3a4b 100%);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.2);
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.tas-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2f3a4b, #111827);
    box-shadow: 0 20px 38px rgba(17, 24, 39, 0.24);
}

.tas-notice {
    max-width: 1130px;
    margin: 0 auto 18px;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.tas-notice-success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #166534;
}

.tas-notice-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.tas-notice-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.tas-admin .tas-admin-form {
    max-width: 760px;
    padding: 18px;
    margin: 16px 0 24px;
    border: 1px solid var(--tas-line);
    border-radius: 12px;
    background: #ffffff;
}

.tas-admin .tas-admin-form-wide {
    max-width: 1120px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}

.tas-admin .tas-admin-form h2,
.tas-admin .tas-admin-form h3,
.tas-admin .tas-admin-route-heading h2 {
    margin: 0;
    color: var(--tas-ink);
    letter-spacing: 0;
}

.tas-admin .tas-admin-form h2 {
    margin-bottom: 16px;
    font-size: 22px;
}

.tas-admin .tas-admin-form h3 {
    margin-bottom: 13px;
    font-size: 15px;
    font-weight: 800;
}

.tas-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tas-admin-section {
    padding: 16px;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.tas-admin-section-full {
    grid-column: 1 / -1;
}

.tas-admin-section p {
    margin: 0 0 13px;
}

.tas-admin-section p:last-child {
    margin-bottom: 0;
}

.tas-admin-section input.regular-text,
.tas-admin-section input[type="number"],
.tas-admin-section select,
.tas-admin-section textarea {
    width: 100%;
    max-width: none;
}

.tas-admin-inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tas-admin-price-rules {
    display: grid;
    gap: 10px;
    margin: 16px 0;
    padding: 14px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 14px;
    background: #fffdf6;
}

.tas-admin-price-rules h4 {
    margin: 0;
    color: #111111;
    font-size: 14px;
    font-weight: 900;
}

.tas-admin-price-rules p {
    margin: 0;
}

.tas-admin-check-grid {
    display: grid;
    gap: 12px;
}

.tas-admin-check-grid label {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    align-items: center;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
    background: #f8fafc;
    font-weight: 700;
}

.tas-admin-section .description {
    margin-top: 12px;
    color: var(--tas-muted);
    line-height: 1.5;
}

.tas-admin-toolbar {
    max-width: 1120px;
    margin: 18px 0;
    padding: 14px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}

.tas-admin-filter {
    display: flex;
    gap: 12px;
    align-items: end;
    flex-wrap: wrap;
}

.tas-admin-filter label {
    min-width: 210px;
    color: #344054;
    font-weight: 700;
}

.tas-admin-filter select {
    width: 100%;
    margin-top: 5px;
}

.tas-admin-route-group {
    max-width: 1120px;
    margin: 18px 0 24px;
    padding: 18px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.tas-admin-route-heading {
    display: flex;
    gap: 16px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
}

.tas-admin-route-heading h2 {
    font-size: 20px;
}

.tas-admin-route-heading p {
    margin: 4px 0 0;
    color: var(--tas-muted);
}

.tas-admin-route-table th,
.tas-admin-route-table td {
    vertical-align: top;
}

.tas-admin-route-table td {
    line-height: 1.45;
}

.tas-admin-muted {
    display: inline-block;
    margin-top: 6px;
    color: var(--tas-muted);
    font-size: 12.5px;
    line-height: 1.5;
    white-space: pre-line;
}

.tas-admin-answer-list {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    color: var(--tas-muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.tas-admin-answer-list span {
    display: block;
}

.tas-admin-empty-table {
    padding: 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--tas-muted);
}

.tas-offers {
    border-color: rgba(17, 17, 17, 0.12);
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdf6 48%, #fff6cf 100%);
}

.tas-offers::before {
    height: 10px;
    background: repeating-linear-gradient(90deg, #111111 0 26px, #ffd21a 26px 52px);
    opacity: 1;
}

.tas-heading h2 {
    color: #111111;
}

.tas-heading-center h2::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: #ffd21a;
    box-shadow: 0 8px 18px rgba(255, 210, 26, 0.35);
}

.tas-category-card,
.tas-shell button.tas-category-card,
.tas-route-panel,
.tas-panel {
    border-color: rgba(17, 17, 17, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fffefa 100%);
}

.tas-category-card::before {
    background: linear-gradient(135deg, rgba(255, 210, 26, 0.28) 0%, rgba(255, 255, 255, 0) 45%);
}

.tas-category-card::after {
    background: #ffd21a;
}

.tas-category-card:hover,
.tas-category-card.is-active,
.tas-shell button.tas-category-card.is-active {
    border-color: #111111;
    background: #ffffff;
}

.tas-category-icon {
    border-color: #f0d36b;
    background: linear-gradient(180deg, #fffdf1 0%, #fff3b2 100%);
}

.tas-category-card:hover .tas-category-icon,
.tas-category-card.is-active .tas-category-icon {
    border-color: #111111;
    background: linear-gradient(180deg, #ffe46a 0%, #ffd21a 100%);
    box-shadow: 0 14px 28px rgba(255, 210, 26, 0.34);
}

.tas-category-action {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.tas-category-action span {
    background: #ffd21a;
    color: #111111;
}

.tas-category-card:hover .tas-category-action,
.tas-category-card.is-active .tas-category-action {
    border-color: #ffd21a;
    background: #ffd21a;
    color: #111111;
}

.tas-category-card:hover .tas-category-action span,
.tas-category-card.is-active .tas-category-action span {
    background: #111111;
    color: #ffd21a;
}

.tas-route-card,
.tas-shell button.tas-route-card {
    border-color: rgba(17, 17, 17, 0.12);
    background: #ffffff;
}

.tas-route-card:hover,
.tas-route-card.is-selected {
    border-color: #111111;
}

.tas-route-card.is-selected {
    background: linear-gradient(135deg, #fff5bd 0%, #ffffff 60%);
}

.tas-booking-price-bar {
    background: linear-gradient(135deg, #ead08a 0%, #fff6d8 100%);
    color: #111111;
}

.tas-booking-price-bar {
    border-color: rgba(17, 17, 17, 0.26);
}

.tas-primary {
    border: 1px solid rgba(17, 17, 17, 0.9);
    background: linear-gradient(135deg, #151515 0%, #252525 58%, #111111 100%);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.2);
}

.tas-primary:hover {
    background: linear-gradient(135deg, #242424 0%, #111111 100%);
    color: #ffffff;
    border-color: #caa646;
}

.tas-submit-area {
    display: grid;
    justify-items: center;
    gap: 13px;
    margin-top: 24px;
    padding: 24px 0 0;
    border: 0;
    border-top: 1px solid #e3e7e5;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tas-submit-area .tas-primary {
    gap: 10px;
    min-width: min(100%, 430px);
    min-height: 60px;
    margin-top: 0;
    padding: 16px 24px;
    border-radius: 8px;
    background: #dcefe6;
    border: 1px solid #98c8af;
    color: #173f2e;
    box-shadow: 0 5px 14px rgba(34, 93, 65, 0.1);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    flex-wrap: wrap;
    max-width: 100%;
    text-align: center;
}

.tas-submit-area .tas-primary:hover { background: #c9e6d6; box-shadow: 0 7px 20px rgba(34, 93, 65, 0.14); }
.tas-submit-area .tas-primary strong { color: inherit; white-space: nowrap; font-size: 16px; }
.tas-primary:disabled { opacity: 0.65; cursor: wait; }

.tas-submit-area .tas-primary::before {
    content: "🔒";
    display: inline-grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    margin-left: 0;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    color: #e2c260;
    font-size: 15px;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    animation: tas-lock-nudge 2.8s ease-in-out infinite;
}

.tas-secure-note {
    display: inline-flex;
    max-width: 760px;
    min-height: 28px;
    padding: 5px 9px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    color: #6a6a6a;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: none;
}

.tas-secure-note span {
    display: inline-flex;
    align-items: center;
}

.tas-secure-lock {
    flex: 0 0 auto;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: transparent;
    color: #e2c260;
    font-size: 9px;
    box-shadow: none;
    animation: tas-secure-pulse 3.2s ease-in-out infinite;
}

.tas-payment-logos {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tas-pay-logo {
    display: inline-flex;
    min-height: 24px;
    padding: 5px 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.84);
    color: #2f2f2f;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.05);
}

.tas-pay-paypal {
    border-color: rgba(0, 69, 124, 0.22);
    background: #ffffff;
    color: #00457c;
}

.tas-pay-amex {
    border-color: rgba(46, 118, 190, 0.28);
    background: #2e77bc;
    color: #ffffff;
}

.tas-pay-mastercard::before {
    content: "";
    width: 18px;
    height: 12px;
    margin-right: 5px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 34% 50%, #e64b3c 0 42%, transparent 43%),
        radial-gradient(circle at 66% 50%, #f0b429 0 42%, transparent 43%);
}

.tas-selected-address {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px 12px 15px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff9da 100%);
    color: #111111;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.tas-selected-address[hidden] {
    display: none !important;
}

.tas-selected-address span {
    min-width: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.tas-selected-address span::before {
    content: "Gespeichert: ";
    color: #6f5b08;
    font-weight: 900;
}

.tas-selected-address button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #111111;
    color: #ffd21a;
    font: inherit;
    font-size: 12.5px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.tas-selected-address button:hover {
    transform: translateY(-1px);
    background: #ffd21a;
    color: #111111;
}

.tas-footer-note {
    max-width: 1140px;
    margin: 20px auto 0;
    padding: 14px 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    color: #5f5f5f;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.tas-admin-danger {
    border-color: #b91c1c !important;
    color: #b91c1c !important;
}

.tas-admin-danger:hover {
    background: #b91c1c !important;
    color: #ffffff !important;
}

.tas-assistant {
    max-width: 1140px;
    margin: 26px auto 0;
    padding: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(202, 166, 70, 0.13), rgba(202, 166, 70, 0) 32%),
        linear-gradient(180deg, #ffffff 0%, #f8f6ef 100%);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.tas-assistant .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tas-assistant-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.tas-assistant-mark {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: #111111;
    color: #e2c260;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.16);
}

.tas-assistant h3,
.tas-assistant p {
    margin: 0;
}

.tas-assistant h3 {
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.tas-assistant p {
    margin-top: 4px;
    color: #666666;
    font-size: 13.5px;
    line-height: 1.45;
}

.tas-chat-log {
    display: grid;
    max-height: 300px;
    gap: 10px;
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.tas-chat-message {
    max-width: min(92%, 720px);
    padding: 10px 12px;
    border-radius: 16px;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.tas-chat-bot {
    justify-self: start;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
}

.tas-chat-user {
    justify-self: end;
    background: #111111;
    color: #ffffff;
}

.tas-chat-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tas-chat-actions button,
.tas-chat-form button {
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-size: 12.5px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.tas-chat-actions button:hover,
.tas-chat-form button:hover {
    transform: translateY(-1px);
    border-color: #caa646;
    background: #242424;
}

.tas-chat-actions button:disabled {
    cursor: default;
    opacity: 0.62;
    transform: none;
    border-color: rgba(17, 17, 17, 0.18);
    background: #f2f2f2;
    color: #555555;
}

.tas-chat-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 12px;
}

.tas-chat-form input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.tas-chat-form input:focus {
    outline: 3px solid rgba(202, 166, 70, 0.18);
    border-color: #caa646;
}

@keyframes tas-icon-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(var(--tas-icon-scale));
    }

    45% {
        transform: translateY(-5px) rotate(-1.5deg) scale(var(--tas-icon-scale));
    }

    70% {
        transform: translateY(2px) rotate(1deg) scale(var(--tas-icon-scale));
    }
}

@keyframes tas-lock-nudge {
    0%,
    100% {
        transform: translateX(0) scale(1);
    }

    45% {
        transform: translateX(1px) scale(1.04);
    }

    65% {
        transform: translateX(0) scale(1);
    }
}

@keyframes tas-secure-pulse {
    0%,
    100% {
        box-shadow: 0 8px 18px rgba(17, 17, 17, 0.14);
    }

    50% {
        box-shadow:
            0 8px 18px rgba(17, 17, 17, 0.14),
            0 0 0 5px rgba(202, 166, 70, 0.16);
    }
}


@media (prefers-reduced-motion: reduce) {
    .tas-category-icon,
    .tas-submit-area .tas-primary::before,
    .tas-secure-lock {
        animation: none;
    }

    .tas-chat-typing span {
        animation: none;
    }
}

.tas-assistant {
    position: fixed !important;
    --tas-chat-edge: var(--tas-chat-side, 16px);
    --tas-chat-edge-bottom: var(--tas-chat-bottom, 16px);
    right: max(var(--tas-chat-edge), env(safe-area-inset-right)) !important;
    bottom: max(var(--tas-chat-edge-bottom), env(safe-area-inset-bottom)) !important;
    top: auto !important;
    left: auto !important;
    z-index: 100000;
    width: max-content;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.tas-chat-language-bar { padding: 6px 14px; border-top: 1px solid #e5e9e6; background: #fff; }
.tas-chat-language-bar label { display: flex; justify-content: flex-end; align-items: center; gap: 8px; margin: 0; font-size: 11px; color: #536259; }
.tas-chat-language-bar select { width: auto; max-width: 165px; min-height: 30px; padding: 3px 26px 3px 8px; font: inherit; font-size: 12px; background-color: #fff; border: 1px solid #c8d2ca; border-radius: 4px; color: #263b2c; }
.tas-chat-source { display: block; margin-top: 10px; font-size: 11px; line-height: 1.5; color: #28533b; overflow-wrap: anywhere; text-decoration: underline; }

.tas-assistant-launcher {
    display: inline-flex;
    gap: 10px;
    min-height: 58px;
    padding: 9px 15px 9px 9px;
    margin-left: auto;
    align-items: center;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.24);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.tas-assistant-launcher:hover {
    transform: translateY(-2px);
    background: #242424;
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.28);
}

.tas-chat-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(390px, calc(100vw - var(--tas-chat-edge) - var(--tas-chat-edge) - 8px));
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - var(--tas-chat-edge-bottom) - var(--tas-launcher-height, 58px) - 28px);
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.13);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.2);
    transform-origin: right bottom;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.tas-assistant.is-closed .tas-chat-panel {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
}

.tas-assistant:not(.is-closed) .tas-assistant-launcher {
    background: #f6f8f7;
    color: #202c25;
}

.tas-assistant .tas-assistant-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
    color: #111111;
    box-shadow:
        0 10px 24px rgba(17, 17, 17, 0.18),
        inset 0 0 0 2px rgba(255, 210, 26, 0.8);
}

.tas-assistant-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.tas-assistant-fallback-icon {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    border-radius: inherit;
    background: #111111;
    color: #ffd21a;
    font-size: 13px;
    font-weight: 950;
}

.tas-chat-panel .tas-assistant-head {
    margin: 0;
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.tas-chat-panel .tas-assistant-head p {
    font-size: 12.5px;
}

.tas-chat-close {
    display: grid;
    width: 34px;
    height: 34px;
    margin-left: auto;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #111111;
    font: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.tas-chat-close:hover {
    background: #111111;
    color: #ffffff;
}

.tas-chat-panel .tas-chat-log {
    max-height: min(380px, calc(100vh - 250px));
    margin: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.62);
    min-height: 0;
    overscroll-behavior: contain;
}

.tas-chat-panel .tas-chat-form {
    margin: 0;
    padding: 12px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.tas-chat-typing {
    display: inline-flex;
    gap: 4px;
    width: auto;
    align-items: center;
}

.tas-chat-typing span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #8a8a8a;
    animation: tas-chat-dot 1s ease-in-out infinite;
}

.tas-chat-typing span:nth-child(2) {
    animation-delay: 120ms;
}

.tas-chat-typing span:nth-child(3) {
    animation-delay: 240ms;
}

@keyframes tas-chat-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .tas-category-grid {
        max-width: 880px;
    }
}

@media (max-width: 860px) {
    .tas-offers {
        padding: 34px 24px 38px;
        border-radius: 26px;
    }

    .tas-category-grid,
    .tas-form-grid,
    .tas-route-list-head,
    .tas-route-card {
        grid-template-columns: 1fr;
    }

    .tas-category-grid {
        gap: 18px;
        max-width: 760px;
    }

    .tas-heading h2 {
        font-size: 32px;
    }

    .tas-category-card,
    .tas-shell button.tas-category-card {
        flex-basis: 340px;
        max-width: 340px;
        min-height: 238px;
    }

    .tas-route-panel-heading {
        display: grid;
        align-items: start;
    }

    .tas-route-panel-heading p {
        max-width: none;
        text-align: left;
    }

    .tas-route-price {
        justify-items: start;
        white-space: normal;
    }

    .tas-route-list-head {
        padding: 0 4px 2px;
    }

    .tas-route-list-head span:last-child {
        display: none;
    }

    .tas-primary {
        width: 100%;
    }

    .tas-booking-price-bar {
        display: grid;
        align-items: start;
    }

    .tas-booking-price-bar small {
        max-width: none;
        text-align: left;
    }

    .tas-full {
        grid-column: auto;
    }

    .tas-admin-grid {
        grid-template-columns: 1fr;
    }

    .tas-admin-inline-fields {
        grid-template-columns: 1fr;
    }

    .tas-admin-section-full {
        grid-column: auto;
    }

    .tas-admin-route-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .tas-return-details { grid-template-columns: minmax(0, 1fr); }
    .tas-submit-area .tas-primary { gap: 8px; padding: 14px 10px; font-size: 14px; }
    .tas-submit-area .tas-primary span { flex: 1 1 160px; }
    .tas-submit-area .tas-primary strong { flex-basis: 100%; }
    .tas-chat-panel .tas-chat-form { grid-template-columns: minmax(0, 1fr) auto; gap: 6px; }
    .tas-chat-panel .tas-chat-form input { font-size: 16px; padding: 10px; }
    .tas-chat-panel .tas-chat-form button { width: auto; padding: 10px; }
    .tas-shell {
        padding: 0 10px 34px;
    }

    .tas-offers {
        padding: 24px 16px 30px;
        border-radius: 22px;
    }

    .tas-heading h2 {
        font-size: 29px;
    }

    .tas-heading p {
        font-size: 16px;
    }

    .tas-category-card,
    .tas-shell button.tas-category-card,
    .tas-route-panel,
    .tas-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .tas-category-card,
    .tas-shell button.tas-category-card {
        flex-basis: 100%;
        max-width: 100%;
        min-height: 220px;
    }

    .tas-category-action {
        width: 100%;
        justify-content: space-between;
    }

    .tas-assistant {
        right: 12px;
        bottom: 12px;
        width: max-content;
        padding: 0;
        border-radius: 0;
    }

    .tas-chat-panel {
        border-radius: 8px;
    }

    .tas-chat-panel .tas-assistant-head {
        align-items: flex-start;
    }

    .tas-chat-form {
        grid-template-columns: 1fr;
    }

    .tas-chat-form button {
        width: 100%;
    }
}
