/*
 * Shared SmartInn Chat Shell theme.
 * Authenticated RMS and the public Product Guide reuse this DOM and visual
 * contract while their transport and authorization profiles remain separate.
 */

.layout-with-chat-shell {
    --rms-utility-dock-width: 5px;
    --rms-utility-dock-item-size: 48px;
    --rms-utility-dock-surface: transparent;
    --rms-chat-panel-surface: #eaf0f7;
    --rms-chat-canvas-surface: #e5edf6;
    display: grid;
    align-items: start;
    gap: 1.125rem;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(340px, min(400px, 32vw))
        var(--rms-utility-dock-width);
}

.layout-with-chat-shell:has(> .smartinn-utility-dock .utility-dock-item:not([hidden])) {
    --rms-utility-dock-width: var(--rms-utility-dock-item-size);
}

.layout-with-chat-shell > .page-main {
    min-width: 0;
    width: auto;
}

.layout-with-chat-shell > .chat-box {
    position: sticky;
    top: 0;
    width: auto;
    min-width: 0;
    max-width: none;
}

.layout-with-chat-shell.chat-collapsed {
    grid-template-columns:
        minmax(0, 1fr)
        0
        var(--rms-utility-dock-width);
}

.layout-with-chat-shell.chat-collapsed > .chat-box {
    width: 0;
    min-width: 0;
    max-width: 0;
}

.layout-with-chat-shell .chat-panel {
    width: 100%;
    min-width: 0;
    height: calc(100vh - var(--rms-header-height) - 3rem);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid var(--rms-border);
    border-radius: var(--rms-radius-panel);
    background: var(--rms-chat-panel-surface);
    box-shadow: var(--rms-shadow-soft);
}

.layout-with-chat-shell > .smartinn-utility-dock {
    position: sticky;
    z-index: 3;
    top: 0;
    width: var(--rms-utility-dock-width);
    min-width: var(--rms-utility-dock-width);
    height: calc(100vh - var(--rms-header-height) - 3rem);
    min-height: 560px;
    padding: 0;
    border: 0;
    border-radius: var(--rms-radius-pill);
    background: var(--rms-utility-dock-surface);
    box-shadow: none;
    overflow: visible;
    transition: width var(--rms-transition), min-width var(--rms-transition);
}

.layout-with-chat-shell .smartinn-utility-dock-items {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.layout-with-chat-shell .utility-dock-item {
    width: 100%;
    min-width: 100%;
    height: var(--rms-utility-dock-item-size);
    min-height: var(--rms-utility-dock-item-size);
    padding: 0;
    border-radius: var(--rms-radius-pill);
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn {
    position: static;
    right: auto;
    bottom: auto;
    top: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn,
.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn i {
    color: var(--rms-primary) !important;
}

.layout-with-chat-shell.chat-collapsed .smartinn-utility-dock .chat-reopen-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.layout-with-chat-shell .chat-panel-body,
.layout-with-chat-shell .chat-ui,
.layout-with-chat-shell .chat-container,
.layout-with-chat-shell .chat-ui .chat-input-window,
.layout-with-chat-shell .chat-ui .chat-input-window .input-wrapper,
.layout-with-chat-shell .chat-suggested-prompts {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.layout-with-chat-shell .chat-panel:hover {
    transform: none;
}

.layout-with-chat-shell .chat-panel-header {
    min-height: 70px;
    align-items: center;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--rms-border);
    background: var(--rms-chat-panel-surface);
}

.layout-with-chat-shell .chat-panel-title {
    margin: 0;
    color: var(--rms-navy);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.layout-with-chat-shell .chat-panel-eyebrow {
    display: block;
    margin-bottom: 0.1rem;
    color: var(--rms-primary);
    font-size: 0.6875rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.layout-with-chat-shell .chat-panel-status {
    margin: 0.2rem 0 0;
    color: var(--rms-text-secondary);
    font-size: var(--rms-font-size-xs);
}

.layout-with-chat-shell .chat-panel-toggle {
    min-width: auto;
    padding: 0 0.65rem;
}

.layout-with-chat-shell .chat-container {
    gap: 0.65rem;
    padding: 1rem;
    color: var(--rms-text);
    background: var(--rms-chat-canvas-surface);
    font-family: var(--rms-font-family);
    font-size: var(--rms-font-size-base);
}

.layout-with-chat-shell .chat-container .message {
    max-width: 88%;
    margin: 0;
    padding: 0.75rem 0.85rem;
    border-radius: 14px 14px 14px 4px;
    animation-duration: 220ms;
    line-height: 1.5;
}

.layout-with-chat-shell .chat-container .user-message {
    align-self: flex-end;
    border: 0;
    border-radius: 14px 14px 4px;
    color: #fff;
    background: var(--rms-primary);
    box-shadow: var(--rms-shadow-primary);
}

.layout-with-chat-shell .chat-container .assistant-message {
    align-self: flex-start;
    border: 1px solid var(--rms-border);
    color: var(--rms-text);
    background: var(--rms-surface);
    box-shadow: var(--rms-shadow-card);
}

.layout-with-chat-shell .chat-container .system-message {
    max-width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px dashed var(--rms-border-strong);
    border-radius: var(--rms-radius-control);
    color: var(--rms-text-secondary);
    background: transparent;
    font-size: var(--rms-font-size-xs);
}

.layout-with-chat-shell .chat-container .system-message::before {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.4rem;
    border-radius: 50%;
    background: var(--rms-success);
    content: "";
}

.layout-with-chat-shell .chat-container .chat-markdown {
    line-height: 1.55;
}

.layout-with-chat-shell .chat-container .chat-markdown code {
    color: var(--rms-navy);
    background: var(--rms-surface-muted);
}

.layout-with-chat-shell .chat-container .chat-markdown pre {
    border-color: #21334b;
    border-radius: var(--rms-radius-control);
    color: #e5edf7;
    background: var(--rms-navy);
}

.layout-with-chat-shell .chat-container .chat-markdown blockquote {
    border-left-color: var(--rms-primary);
    color: var(--rms-text-secondary);
}

.layout-with-chat-shell .chat-container .chat-markdown a {
    color: var(--rms-primary);
}

.layout-with-chat-shell .chat-container .chat-markdown th,
.layout-with-chat-shell .chat-container .chat-markdown td {
    border-color: var(--rms-border);
}

.layout-with-chat-shell .chat-scroll-latest {
    right: 1rem;
    bottom: 9.8rem;
    min-height: 34px;
    padding: 0 0.75rem;
    border: 1px solid #b9d4fb;
    border-radius: var(--rms-radius-pill);
    color: var(--rms-primary);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--rms-shadow-soft);
    font-size: var(--rms-font-size-xs);
    font-weight: 750;
}

.layout-with-chat-shell .chat-ui .chat-input-window {
    padding: 0.85rem 0.95rem 0.95rem;
    border-top: 0;
    background: var(--rms-chat-panel-surface);
}

.layout-with-chat-shell .chat-suggested-prompts {
    display: flex;
    gap: 0.45rem;
    padding: 0.75rem 0.95rem 0;
    overflow-x: auto;
    background: var(--rms-chat-panel-surface);
    scrollbar-width: thin;
}

.layout-with-chat-shell .chat-suggested-prompt {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 0.7rem;
    border-radius: var(--rms-radius-pill);
    white-space: nowrap;
}

.layout-with-chat-shell .chat-message-suggestion {
    display: inline-flex;
    margin-top: 0.55rem;
    color: var(--rms-primary);
    font-size: var(--rms-font-size-sm);
    font-weight: 750;
}

.layout-with-chat-shell .chat-ui .chat-input-window .input-wrapper textarea {
    min-height: 88px;
    padding: 0.45rem 0.55rem 0.65rem;
    border: 0;
    border-radius: 0;
    color: var(--rms-text);
    background: transparent;
    font-family: var(--rms-font-family);
    font-size: var(--rms-font-size-base);
    resize: none;
    box-shadow: none;
    outline: none;
}

.layout-with-chat-shell .chat-ui .chat-input-window .input-wrapper textarea:focus {
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.layout-with-chat-shell .chat-ui .chat-input-window .input-wrapper {
    position: relative;
    padding: 0.55rem;
    border: 0;
    border-radius: 22px;
    background: var(--rms-surface);
    box-shadow: none;
}

.layout-with-chat-shell .chat-ui .chat-input-window .input-wrapper:focus-within {
    border-color: transparent;
    box-shadow: none;
}

.layout-with-chat-shell .chat-ui .chat-input-window .options-panel {
    margin-top: 0;
    padding-top: 0.25rem;
}

.layout-with-chat-shell .chat-ui .chat-input-window .chat-composer-actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.6rem;
}

.layout-with-chat-shell .options-left {
    display: flex;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}

.layout-with-chat-shell .chat-attachment-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-direction: row;
    flex-wrap: nowrap;
}

.layout-with-chat-shell .chat-action-btn {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    flex: 0 0 38px;
    padding: 0;
}

.layout-with-chat-shell .chat-submit-actions {
    display: flex;
    align-self: center;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
}

.layout-with-chat-shell .chat-submit-actions .chat-stop-btn,
.layout-with-chat-shell .chat-submit-actions .chat-send-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
}

.layout-with-chat-shell .chat-send-btn {
    align-self: center;
}

.layout-with-chat-shell .rms-btn {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 0.85rem;
    border: 1px solid transparent;
    border-radius: var(--rms-radius-button);
    font-family: var(--rms-font-family);
    font-size: var(--rms-font-size-sm);
    font-weight: 750;
    transition: border-color var(--rms-transition),
        background-color var(--rms-transition),
        color var(--rms-transition),
        box-shadow var(--rms-transition);
}

.layout-with-chat-shell .rms-btn-primary {
    border-color: var(--rms-primary);
    color: #fff;
    background: var(--rms-primary);
    box-shadow: var(--rms-shadow-primary);
}

.layout-with-chat-shell .rms-btn-secondary,
.layout-with-chat-shell .rms-btn-ghost {
    border-color: var(--rms-border);
    color: var(--rms-text);
    background: var(--rms-surface);
}

.layout-with-chat-shell .rms-btn:hover:not(:disabled) {
    border-color: var(--rms-primary-hover);
}

.layout-with-chat-shell .rms-btn-primary:hover:not(:disabled) {
    color: #fff;
    background: var(--rms-primary-hover);
}

.layout-with-chat-shell .rms-btn:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.layout-with-chat-shell .chat-ui .chat-input-window .chat-action-btn,
.layout-with-chat-shell .chat-ui .chat-input-window .chat-stop-btn,
.layout-with-chat-shell .chat-ui .chat-input-window .chat-send-btn {
    border-color: transparent !important;
    color: var(--rms-text-secondary);
    background: transparent !important;
    box-shadow: none !important;
}

.layout-with-chat-shell .chat-ui .chat-input-window .chat-action-btn:hover:not(:disabled),
.layout-with-chat-shell .chat-ui .chat-input-window .chat-action-btn:focus-visible,
.layout-with-chat-shell .chat-ui .chat-input-window .chat-stop-btn:hover:not(:disabled),
.layout-with-chat-shell .chat-ui .chat-input-window .chat-stop-btn:focus-visible {
    border-color: transparent !important;
    color: var(--rms-text);
    background: transparent !important;
    box-shadow: none !important;
}

.layout-with-chat-shell .chat-ui .chat-input-window .chat-stop-btn {
    color: var(--rms-danger);
}

.layout-with-chat-shell .chat-ui .chat-input-window .chat-send-btn,
.layout-with-chat-shell .chat-ui .chat-input-window .chat-send-btn:hover:not(:disabled),
.layout-with-chat-shell .chat-ui .chat-input-window .chat-send-btn:focus-visible {
    border-color: transparent !important;
    color: var(--rms-primary);
    background: transparent !important;
    box-shadow: none !important;
}

.layout-with-chat-shell .chat-ui .chat-input-window .chat-send-btn i {
    font-size: 1.3rem;
}

.layout-with-chat-shell .chat-stop-btn[hidden] {
    display: none !important;
}

.layout-with-chat-shell .chat-system-toggle {
    margin: 0;
}

.layout-with-chat-shell .chat-more-menu {
    position: relative;
}

.layout-with-chat-shell .chat-more-menu-panel {
    position: absolute;
    z-index: 8;
    left: 0;
    bottom: calc(100% + 0.5rem);
    width: max-content;
    min-width: 190px;
    max-width: min(280px, calc(100vw - 2rem));
    padding: 0.35rem;
    border: 1px solid var(--rms-border);
    border-radius: var(--rms-radius-control);
    background: var(--rms-surface);
    box-shadow: var(--rms-shadow-soft);
}

.layout-with-chat-shell .chat-more-menu-panel[hidden] {
    display: none !important;
}

.layout-with-chat-shell .chat-menu-item-toggle {
    display: flex;
    width: 100%;
    min-height: 38px;
    margin: 0;
    padding: 0.5rem 0.65rem;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    border: 0;
    border-radius: calc(var(--rms-radius-control) - 3px);
    color: var(--rms-text-secondary);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.layout-with-chat-shell .chat-menu-item-toggle:hover,
.layout-with-chat-shell #toggleSystemMessages:focus-visible + .chat-menu-item-toggle {
    color: var(--rms-text);
    background: var(--rms-surface-soft);
}

.layout-with-chat-shell #toggleSystemMessages:checked + .chat-menu-item-toggle {
    color: var(--rms-primary);
    background: transparent;
}

.layout-with-chat-shell .chat-attachment-uploader[hidden] {
    display: none !important;
}

.layout-with-chat-shell .chat-ui .chat-input-window,
.layout-with-chat-shell .chat-ui .chat-input-window .input-wrapper {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.layout-with-chat-shell .chat-attachment-uploader {
    width: auto;
    min-width: 0;
    max-width: 100%;
    max-height: min(360px, 45vh);
    margin: 0 0 0.6rem;
    padding: 0.7rem;
    align-self: stretch;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--rms-border);
    border-radius: 16px;
    background: var(--rms-surface);
    box-shadow: 0 10px 28px rgba(24, 58, 102, 0.08);
    box-sizing: border-box;
    scrollbar-width: thin;
}

.layout-with-chat-shell .chat-attachment-uploader-header {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    color: var(--rms-text);
}

.layout-with-chat-shell .chat-attachment-uploader-heading {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.55rem;
    font-size: var(--rms-font-size-sm);
    font-weight: 780;
}

.layout-with-chat-shell .chat-attachment-uploader-heading > :last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layout-with-chat-shell .chat-attachment-uploader-icon {
    display: inline-flex;
    width: 30px;
    min-width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--rms-primary);
    background: var(--rms-primary-soft);
}

.layout-with-chat-shell .chat-icon-action {
    display: inline-flex;
    width: 30px;
    min-width: 30px;
    height: 30px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--rms-text-secondary);
    background: transparent;
    cursor: pointer;
    transition: border-color var(--rms-transition),
        color var(--rms-transition),
        background-color var(--rms-transition);
}

.layout-with-chat-shell .chat-icon-action:hover,
.layout-with-chat-shell .chat-icon-action:focus-visible {
    color: var(--rms-primary);
    border-color: var(--rms-border);
    background: var(--rms-surface-soft);
    outline: none;
}

.layout-with-chat-shell .chat-attachment-uploader .file-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 0.65rem;
    overflow: hidden;
    box-sizing: border-box;
}

.layout-with-chat-shell .chat-attachment-uploader .file-preview {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-sizing: border-box;
}

.layout-with-chat-shell .chat-attachment-uploader .file-drop-zone {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 116px;
    max-height: 210px;
    margin: 0;
    padding: 0.55rem;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px dashed var(--rms-border-strong);
    border-radius: 13px;
    background: var(--rms-surface-soft);
    box-sizing: border-box;
    transition: border-color var(--rms-transition),
        background-color var(--rms-transition);
}

.layout-with-chat-shell .chat-attachment-uploader .file-drop-zone:hover,
.layout-with-chat-shell .chat-attachment-uploader .file-drop-zone:focus-visible,
.layout-with-chat-shell .chat-attachment-uploader .file-highlighted {
    border-color: var(--rms-primary);
    background: var(--rms-primary-soft);
    outline: none;
}

.layout-with-chat-shell .chat-attachment-uploader .file-drop-zone-title {
    display: flex;
    min-height: 98px;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    color: var(--rms-text-secondary);
    font-size: var(--rms-font-size-xs);
    line-height: 1.45;
    text-align: center;
}

.layout-with-chat-shell .chat-upload-drop-content {
    display: flex;
    max-width: 210px;
    align-items: center;
    flex-direction: column;
    gap: 0.55rem;
}

.layout-with-chat-shell .chat-upload-drop-content > i {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c8daf5;
    border-radius: 12px;
    color: var(--rms-primary);
    background: var(--rms-surface);
    font-size: 1rem;
    box-shadow: var(--rms-shadow-soft);
}

.layout-with-chat-shell .chat-attachment-uploader .file-drop-zone:has(.file-preview-frame) .file-drop-zone-title {
    display: none;
}

.layout-with-chat-shell .chat-attachment-uploader .file-preview-thumbnails {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    gap: 0.5rem;
}

.layout-with-chat-shell .chat-attachment-uploader .file-preview-thumbnails::before,
.layout-with-chat-shell .chat-attachment-uploader .file-preview-thumbnails::after {
    display: none;
}

.layout-with-chat-shell .chat-attachment-uploader .file-preview-frame,
.layout-with-chat-shell .chat-attachment-uploader .krajee-default.file-preview-frame {
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.45rem !important;
    border: 1px solid var(--rms-border);
    border-radius: 12px;
    background: var(--rms-surface);
    box-shadow: none !important;
    box-sizing: border-box;
}

.layout-with-chat-shell .chat-attachment-uploader .kv-file-content {
    display: flex;
    width: 100% !important;
    min-width: 0;
    height: 84px !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: var(--rms-surface-soft);
}

.layout-with-chat-shell .chat-attachment-uploader .kv-file-content img,
.layout-with-chat-shell .chat-attachment-uploader .file-preview-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.layout-with-chat-shell .chat-attachment-uploader .file-thumbnail-footer {
    min-width: 0;
}

.layout-with-chat-shell .chat-attachment-uploader .file-footer-caption {
    width: 100%;
    min-width: 0;
    padding-top: 0.35rem;
    overflow: hidden;
    color: var(--rms-text-secondary);
    font-size: 0.6875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layout-with-chat-shell .chat-attachment-uploader .file-footer-buttons .btn {
    width: 28px;
    min-width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 8px;
    font-size: 0;
}

.layout-with-chat-shell .chat-attachment-uploader .file-footer-buttons .btn i {
    font-size: 0.75rem;
}

.layout-with-chat-shell .chat-attachment-uploader .file-caption {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 0.55rem;
    border: 0;
    background: transparent;
    box-sizing: border-box;
}

.layout-with-chat-shell .chat-attachment-uploader .file-caption > .input-group {
    display: grid !important;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.4rem;
}

.layout-with-chat-shell .chat-attachment-uploader .file-caption-name {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 0.65rem;
    overflow: hidden;
    border: 1px solid var(--rms-border) !important;
    border-radius: 10px !important;
    color: var(--rms-text-secondary);
    background: var(--rms-surface-soft) !important;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    box-shadow: none !important;
}

.layout-with-chat-shell .chat-attachment-uploader .file-caption .input-group-btn,
.layout-with-chat-shell .chat-attachment-uploader .file-caption .input-group-append {
    display: flex;
    width: auto;
    min-width: 0;
    margin: 0;
    align-items: center;
    gap: 0.3rem;
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-icon-button {
    position: relative;
    display: inline-flex;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0 !important;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rms-border) !important;
    border-radius: 10px !important;
    color: var(--rms-text-secondary);
    background: var(--rms-surface);
    font-size: 0;
    box-shadow: none !important;
    box-sizing: border-box;
    transition: border-color var(--rms-transition),
        color var(--rms-transition),
        background-color var(--rms-transition),
        transform var(--rms-transition);
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-icon-button > i {
    font-size: 0.8125rem;
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-icon-button:hover,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-icon-button:focus-visible {
    border-color: #a9c9f6 !important;
    color: var(--rms-primary);
    background: var(--rms-primary-soft);
    outline: none;
    transform: translateY(-1px);
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-browse,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-submit {
    border-color: var(--rms-primary) !important;
    color: #fff;
    background: var(--rms-primary);
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-browse:hover,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-browse:focus-visible,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-submit:hover,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-submit:focus-visible {
    border-color: var(--rms-primary-hover) !important;
    color: #fff;
    background: var(--rms-primary-hover);
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-remove:hover,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-remove:focus-visible {
    border-color: #fecaca !important;
    color: var(--rms-danger);
    background: #fff5f5;
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-icon-button.disabled,
.layout-with-chat-shell .chat-attachment-uploader .chat-upload-icon-button:disabled {
    opacity: 0.42;
    transform: none;
    cursor: not-allowed;
}

.layout-with-chat-shell .chat-attachment-uploader .chat-upload-button-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.layout-with-chat-shell .chat-attachment-uploader .kv-hidden {
    display: none !important;
}

.layout-with-chat-shell .chat-attachment-uploader .kv-upload-progress {
    width: 100%;
    min-width: 0;
    margin-top: 0.45rem;
}

.layout-with-chat-shell .chat-attachment-uploader .progress {
    height: 4px;
    border-radius: var(--rms-radius-pill);
    background: var(--rms-surface-muted);
}

.layout-with-chat-shell .chat-attachment-uploader .file-error-message {
    margin: 0.45rem 0 0;
    padding: 0.5rem 0.6rem;
    border-radius: 9px;
    font-size: 0.6875rem;
}

.layout-with-chat-shell .file-preview-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
}

.layout-with-chat-shell .file-preview-badge {
    display: inline-flex;
    max-width: 100%;
    min-height: 30px;
    padding: 0.35rem 0.55rem;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    border-radius: var(--rms-radius-pill);
    color: var(--rms-text);
    background: var(--rms-surface-soft);
}

.layout-with-chat-shell .file-preview-badge .file-preview-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layout-with-chat-shell .file-preview-badge .remove-file {
    display: inline-flex;
    width: 24px;
    min-width: 24px;
    height: 24px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--rms-text-secondary);
    background: transparent;
}

.layout-with-chat-shell .chat-companion {
    position: relative;
    width: 52px;
    min-width: 52px;
    height: 52px;
}

.layout-with-chat-shell .chat-companion-notification {
    position: absolute;
    z-index: 4;
    right: calc(100% + 12px);
    bottom: 0;
    width: min(260px, calc(100vw - 94px));
    pointer-events: none;
}

.layout-with-chat-shell .chat-message-teaser {
    position: relative;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 10px 13px 11px;
    overflow: visible;
    border: 1px solid rgba(23, 105, 224, 0.2);
    border-radius: 16px 16px 5px 16px;
    color: #15345d;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 38px rgba(8, 31, 64, 0.2);
    text-align: left;
    opacity: 0;
    pointer-events: auto;
    transform: translate3d(10px, 8px, 0) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.layout-with-chat-shell .chat-message-teaser[hidden] {
    display: none !important;
}

.layout-with-chat-shell .chat-message-teaser::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 11px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(23, 105, 224, 0.16);
    border-right: 1px solid rgba(23, 105, 224, 0.16);
    background: #fff;
    transform: rotate(45deg);
}

.layout-with-chat-shell .chat-message-teaser.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.layout-with-chat-shell .chat-message-teaser.is-hiding {
    pointer-events: none;
}

.layout-with-chat-shell .chat-message-teaser:hover,
.layout-with-chat-shell .chat-message-teaser:focus-visible {
    border-color: rgba(23, 105, 224, 0.5);
    box-shadow: 0 16px 42px rgba(8, 31, 64, 0.24);
    outline: none;
}

.layout-with-chat-shell .chat-message-teaser-kicker {
    color: var(--rms-primary);
    font-size: 0.65rem;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.layout-with-chat-shell .chat-message-teaser-text {
    display: -webkit-box;
    min-width: 0;
    margin-top: 3px;
    overflow: hidden;
    color: #2f496c;
    font-size: 0.76rem;
    font-weight: 650;
    line-height: 1.4;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.layout-with-chat-shell .chat-reopen-btn {
    min-height: 44px;
    border-color: transparent !important;
    color: var(--rms-primary);
    background: transparent !important;
    box-shadow: none !important;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn {
    position: relative;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 4px;
    overflow: visible;
    border: 1px solid rgba(23, 105, 224, 0.32) !important;
    border-radius: 18px;
    color: #fff !important;
    background: linear-gradient(145deg, #ffffff 0%, #e8f2ff 100%) !important;
    box-shadow: 0 10px 28px rgba(23, 105, 224, 0.24) !important;
    transition: border-color var(--rms-transition),
        box-shadow var(--rms-transition),
        transform var(--rms-transition);
}

.layout-with-chat-shell .chat-companion-avatar {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.5), transparent 28%),
        linear-gradient(145deg, #398cff 0%, #1769e0 55%, #754fe9 100%);
    box-shadow: inset 0 -5px 11px rgba(14, 54, 130, 0.18),
        0 5px 12px rgba(23, 105, 224, 0.22);
}

.layout-with-chat-shell .chat-companion-avatar-mark {
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 3px rgba(9, 45, 107, 0.32);
}

.layout-with-chat-shell .chat-companion-status-dot {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #20b486;
    box-shadow: 0 2px 5px rgba(9, 60, 46, 0.25);
}

.layout-with-chat-shell .chat-unread-badge {
    position: absolute;
    z-index: 4;
    top: -7px;
    right: -7px;
    display: grid;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #eb3d55;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(190, 32, 57, 0.3);
}

.layout-with-chat-shell .chat-unread-badge[hidden] {
    display: none !important;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -5px;
    border: 2px solid rgba(23, 105, 224, 0.5);
    border-radius: 22px;
    opacity: 0;
    pointer-events: none;
}

.layout-with-chat-shell .chat-companion.has-unread .chat-companion-avatar {
    animation: smartinn-chat-companion-arrival 520ms cubic-bezier(.2, .85, .3, 1.3) both;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn.has-unread::after {
    animation: smartinn-chat-companion-burst 1.15s ease-out 2;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn.is-thinking::after {
    border-style: dashed;
    opacity: 0.8;
    animation: smartinn-chat-companion-thinking 1.65s linear infinite;
}

.layout-with-chat-shell .chat-companion.is-thinking .chat-companion-status-dot {
    background: #ffb020;
    animation: smartinn-chat-companion-status 1.1s ease-in-out infinite;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn:hover,
.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn:focus-visible {
    border-color: rgba(23, 105, 224, 0.62) !important;
    box-shadow: 0 14px 34px rgba(23, 105, 224, 0.31) !important;
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn:focus-visible {
    outline: 3px solid rgba(23, 105, 224, 0.2);
    outline-offset: 4px;
}

.layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn:active {
    transform: translateY(0) scale(0.97);
}

@keyframes smartinn-chat-companion-arrival {
    0% { transform: translateY(0) scale(1); }
    38% { transform: translateY(-7px) scale(1.06); }
    72% { transform: translateY(2px) scale(0.98); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes smartinn-chat-companion-burst {
    0% { opacity: 0.72; transform: scale(0.88); }
    75%, 100% { opacity: 0; transform: scale(1.28); }
}

@keyframes smartinn-chat-companion-thinking {
    to { transform: rotate(360deg); }
}

@keyframes smartinn-chat-companion-status {
    50% { opacity: 0.48; transform: scale(0.76); }
}

@media (prefers-reduced-motion: reduce) {
    .layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn,
    .layout-with-chat-shell .smartinn-utility-dock .chat-reopen-btn::after,
    .layout-with-chat-shell .chat-companion-avatar,
    .layout-with-chat-shell .chat-companion-status-dot,
    .layout-with-chat-shell .chat-message-teaser {
        animation: none !important;
        transition: none !important;
    }
}

.layout-with-chat-shell .chat-panel-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    border-color: transparent !important;
    color: var(--rms-text-secondary);
    background: transparent !important;
    box-shadow: none !important;
}

body.public-site .public-shared-chat-layout {
    padding: 0;
    grid-template-columns: minmax(0, 1fr) minmax(340px, min(400px, 32vw)) 0;
}

body.public-site .public-shared-chat-layout.chat-collapsed {
    gap: 0;
    grid-template-columns: minmax(0, 1fr) 0 0;
}

body.public-site .public-shared-chat-layout > .chat-box {
    top: 1rem;
    margin-right: 1rem;
}

body.public-site .public-shared-chat-layout .chat-panel {
    height: calc(100vh - var(--public-header-height, 72px) - 2rem);
}

body.public-site .public-shared-chat-layout .chat-reopen-btn {
    transform: none;
}

body.public-site .public-shared-chat-layout.chat-collapsed .chat-reopen-btn {
    transform: none;
}

body.public-site .public-shared-chat-layout > .smartinn-utility-dock {
    position: fixed;
    z-index: 1100;
    right: 1.5rem;
    bottom: 1.5rem;
    top: auto;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

@media (max-width: 1199.98px) {
    .layout-with-chat-shell {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 36vw)
            var(--rms-utility-dock-width);
    }
}

@media (max-width: 991.98px) {
    body.layout-with-chat-body .content-wrapper.smartinn-admin-content-wrapper {
        scrollbar-gutter: stable both-edges;
    }

    .layout-with-chat-shell,
    .layout-with-chat-shell.chat-collapsed {
        display: block;
    }

    .layout-with-chat-shell:not([data-smartinn-chat-initialized="true"]) > .chat-box {
        opacity: 0;
        pointer-events: none;
        transform: translateX(calc(100% + 1.5rem));
    }

    .layout-with-chat-shell > .chat-box {
        position: fixed;
        z-index: 1035;
        top: calc(var(--rms-header-height) + 0.75rem);
        right: calc(0.75rem + var(--rms-utility-dock-width) + 0.75rem);
        bottom: 0.75rem;
        width: min(420px, calc(100vw - 3rem - var(--rms-utility-dock-width)));
        max-width: calc(100vw - 3rem - var(--rms-utility-dock-width));
    }

    .layout-with-chat-shell > .smartinn-utility-dock {
        position: fixed;
        z-index: 1036;
        top: auto;
        right: 0.75rem;
        bottom: max(0.75rem, env(safe-area-inset-bottom));
        height: auto;
        min-height: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    /* chat.css hides every span inside the reopen button below 768px. Keep
       only its legacy text label hidden and restore the visual companion. */
    .layout-with-chat-shell .chat-reopen-btn .chat-companion-avatar {
        display: grid;
    }

    .layout-with-chat-shell .chat-reopen-btn .chat-companion-avatar-mark {
        display: inline-block;
    }

    .layout-with-chat-shell .chat-reopen-btn .chat-companion-status-dot {
        display: block;
    }

    .layout-with-chat-shell .chat-reopen-btn .chat-unread-badge:not([hidden]) {
        display: grid;
    }

    .layout-with-chat-shell .chat-panel {
        height: 100%;
        min-height: 0;
        box-shadow: 0 20px 54px rgba(7, 20, 38, 0.18);
    }

    .layout-with-chat-shell.chat-collapsed > .chat-box {
        transform: translateX(calc(100% + 1.5rem));
    }

    body.public-site .public-shared-chat-layout > .chat-box {
        top: calc(var(--public-header-height, 72px) + 0.75rem);
        right: 0.75rem;
        margin-right: 0;
        width: min(420px, calc(100vw - 1.5rem));
        max-width: calc(100vw - 1.5rem);
    }

    body.public-site .public-shared-chat-layout > .smartinn-utility-dock {
        top: auto;
        right: 1.5rem;
        bottom: 1.5rem;
        width: auto;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .layout-with-chat-shell > .chat-box {
        top: calc(var(--rms-header-height) + 0.5rem);
        right: calc(1rem + var(--rms-utility-dock-width));
        bottom: 0.5rem;
        width: calc(100vw - 1.5rem - var(--rms-utility-dock-width));
        max-width: calc(100vw - 1.5rem - var(--rms-utility-dock-width));
    }

    .layout-with-chat-shell > .smartinn-utility-dock {
        top: auto;
        right: 0.5rem;
        bottom: max(0.5rem, env(safe-area-inset-bottom));
        padding: 0.25rem;
    }

    .layout-with-chat-shell .chat-companion-notification {
        width: min(238px, calc(100vw - 84px));
    }

    .layout-with-chat-shell .chat-panel {
        border-radius: var(--rms-radius-card);
    }

    .layout-with-chat-shell .chat-panel-header {
        min-height: 62px;
        padding: 0.75rem;
    }

    .layout-with-chat-shell .chat-container {
        padding: 0.75rem;
    }

    .layout-with-chat-shell .chat-container .message {
        max-width: 94%;
    }

    .layout-with-chat-shell .chat-suggested-prompts {
        padding: 0.6rem 0.75rem 0;
    }

    .layout-with-chat-shell .chat-submit-actions .btn {
        width: 40px;
        min-width: 40px;
        flex: 0 0 40px;
    }

    body.public-site .public-shared-chat-layout > .chat-box {
        left: 0.5rem;
        right: 0.5rem;
        top: 0.5rem;
        width: auto;
        max-width: none;
    }

    body.public-site .public-shared-chat-layout > .smartinn-utility-dock {
        left: auto;
        right: 0.5rem;
        top: auto;
        bottom: 0.5rem;
        width: auto;
    }
}

body.smartinn-admin-shell.dark-mode .layout-with-chat-shell .chat-scroll-latest,
body.smartinn-admin-shell[data-theme="dark"] .layout-with-chat-shell .chat-scroll-latest {
    background: rgba(13, 27, 45, 0.97);
}

body.smartinn-admin-shell.dark-mode .layout-with-chat-shell,
body.smartinn-admin-shell[data-theme="dark"] .layout-with-chat-shell {
    --rms-chat-panel-surface: #10243a;
    --rms-chat-canvas-surface: #0c1d31;
}

body.smartinn-admin-shell.dark-mode .layout-with-chat-shell .chat-message-teaser,
body.smartinn-admin-shell[data-theme="dark"] .layout-with-chat-shell .chat-message-teaser {
    border-color: rgba(116, 172, 255, 0.34);
    color: #f4f8ff;
    background: rgba(16, 36, 58, 0.98);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

body.smartinn-admin-shell.dark-mode .layout-with-chat-shell .chat-message-teaser::after,
body.smartinn-admin-shell[data-theme="dark"] .layout-with-chat-shell .chat-message-teaser::after {
    border-color: rgba(116, 172, 255, 0.24);
    background: #10243a;
}

body.smartinn-admin-shell.dark-mode .layout-with-chat-shell .chat-message-teaser-text,
body.smartinn-admin-shell[data-theme="dark"] .layout-with-chat-shell .chat-message-teaser-text {
    color: #c9d8ed;
}
.rms-csv-import-selector,
.rms-reservation-import-status {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px;
    border: 1px solid #dce5f2;
    border-radius: 14px;
    background: #fff;
    color: #10213a;
    box-shadow: 0 8px 24px rgba(25, 55, 95, .07);
}

.rms-csv-import-selector__title,
.rms-reservation-import-status__header h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.rms-csv-import-selector__list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.rms-csv-import-selector__option {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    width: 100%;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #dce5f2;
    border-radius: 10px;
    background: #f8fbff;
    color: #1c3150;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.rms-csv-import-selector__option:hover:not(:disabled) {
    border-color: #1f6feb;
    background: #eef6ff;
    transform: translateY(-1px);
}

.rms-csv-import-selector__option:disabled {
    cursor: wait;
    opacity: .58;
}

.rms-csv-import-selector__number {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #e8f1ff;
    color: #1367db;
    font-weight: 800;
}

.rms-csv-import-selector__error {
    margin: 10px 0 0;
    color: #b42318;
    font-size: 12px;
}

.rms-csv-import-selector__selection,
.rms-csv-import-selector__hint {
    margin: 8px 0 0;
    color: #607089;
    font-size: 12px;
    line-height: 1.45;
}

.rms-csv-import-selector__hint.is-warning {
    color: #a45100;
}

.rms-csv-import-selector__accounts {
    display: grid;
    gap: 7px;
    margin-top: 10px;
}

.rms-csv-import-selector__account {
    display: grid;
    gap: 2px;
    width: 100%;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #f4f7fb;
    color: #1c3150;
    text-align: left;
    cursor: pointer;
}

.rms-csv-import-selector__account span {
    overflow: hidden;
    color: #607089;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rms-csv-import-selector__account.is-selected {
    border-color: #1f6feb;
    background: #eef6ff;
}

.rms-csv-import-selector__actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
}

.rms-csv-import-selector__back,
.rms-csv-import-selector__confirm,
.rms-csv-import-selector__manage-link {
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
}

.rms-csv-import-selector__back,
.rms-csv-import-selector__confirm {
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid #cbd8e8;
}

.rms-csv-import-selector__back {
    background: #fff;
    color: #425777;
}

.rms-csv-import-selector__confirm {
    flex: 1;
    border-color: #1f6feb;
    background: #1f6feb;
    color: #fff;
}

.rms-csv-import-selector__confirm:disabled {
    cursor: not-allowed;
    opacity: .5;
}

.rms-csv-import-selector__manage-link {
    display: inline-flex;
    margin-top: 8px;
    color: #1367db;
}

.rms-reservation-import-status__header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.rms-reservation-import-status__header p {
    margin: 3px 0 0;
    color: #607089;
    font-size: 12px;
    line-height: 1.45;
}

.rms-reservation-import-status__icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eaf2ff;
    color: #146ce0;
}

.rms-reservation-import-status__icon.is-terminal {
    background: #eaf8ef;
    color: #178447;
}

.rms-reservation-import-status__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 13px 0 0;
}

.rms-reservation-import-status__metrics > div {
    min-width: 0;
    padding: 8px 9px;
    border-radius: 9px;
    background: #f6f8fb;
}

.rms-reservation-import-status__metrics dt {
    overflow: hidden;
    color: #6b7a90;
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rms-reservation-import-status__metrics dd {
    margin: 2px 0 0;
    font-size: 17px;
    font-weight: 750;
}

.rms-reservation-import-status__link,
.rms-reservation-import-status__link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 9px;
    background: #146ce0;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
}

.rms-reservation-import-status__link:hover,
.rms-reservation-import-status__link:focus-visible {
    color: #fff !important;
    background: #0e5fc8;
    text-decoration: none !important;
}

@media (max-width: 420px) {
    .rms-reservation-import-status__metrics {
        grid-template-columns: minmax(0, 1fr);
    }
}
