/* === Beachball AI Chat — Global Styles === */

/* === NOW Font Family === */

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-Thin-BF6542f71390851.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-ExtraLight-BF6542f7138edb2.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-Light-BF6542f7137fce2.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-Regular-BF6542f7138c477.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-Medium-BF6542f7137648d.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-SemiBold-BF6542f713451c6.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-Bold-BF6542f7138a8d2.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-ExtraBold-BF6542f713848e0.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Now';
    src: url('../fonts/Now-Black-BF6542f712baf72.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-red: #EE3528;
    --brand-blue: #008FC1;
    --brand-yellow: #FAD831;
    --brand-gray: #EDEDED;
    --user-bubble: #008FC1;
    --user-text: #FFFFFF;
    --bot-bubble: #EDEDED;
    --bot-text: #212529;
    --send-btn: #EE3528;
    --send-btn-hover: #D42E22;
    --bg: #FFFFFF;
    --header-bg: #008FC1;
    --header-text: #FFFFFF;
    --input-border: #DEE2E6;
    --input-bg: #FFFFFF;
    --text-muted: #868E96;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bot-text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* === Layout === */

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    width: 100%;
}

/* === Header === */

.chat-header {
    background: #FFFFFF;
    padding: 0.75rem 1.25rem;
    flex-shrink: 0;
    border-bottom: 3px solid var(--brand-blue);
    z-index: 10;
}

.chat-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.chat-logo {
    height: 3rem;
    width: auto;
    display: block;
}

.chat-header h1 {
    font-family: 'Now', 'Open Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Now', 'Open Sans', sans-serif;
}

.chat-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 400;
}

@media (max-width: 480px) {
    .chat-subtitle {
        display: none;
    }
}

/* === Message Area === */

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    scroll-behavior: smooth;
    background: #F5F6F8;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #CED4DA;
    border-radius: 3px;
}

/* === Chat Bubbles === */

.chat-bubble {
    max-width: min(80%, 640px);
    padding: 0.75rem 1rem;
    border-radius: 1.125rem;
    line-height: 1.5;
    font-size: 0.9375rem;
    word-wrap: break-word;
    animation: fadeInUp 0.25s ease-out;
}

.bot-bubble {
    align-self: flex-start;
    background: #FFFFFF;
    color: var(--bot-text);
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.user-bubble {
    align-self: flex-end;
    background: var(--user-bubble);
    color: var(--user-text);
    border-bottom-right-radius: 0.25rem;
}

.bubble-content {
    white-space: pre-wrap;
}

.bubble-time {
    font-size: 0.6875rem;
    margin-top: 0.375rem;
    opacity: 0.55;
    text-align: right;
}

.bot-bubble .bubble-time {
    text-align: left;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Property Cards === */

.property-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
    width: 100%;
    animation: fadeInUp 0.3s ease-out;
}

.property-card {
    background: #FFFFFF;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.property-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #E9ECEF;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-card-body {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.property-card-name {
    font-family: 'Now', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--bot-text);
    line-height: 1.3;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.property-card-location svg {
    flex-shrink: 0;
}

.property-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 0.25rem;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #495057;
}

.property-detail svg {
    flex-shrink: 0;
    color: var(--brand-blue);
}

.property-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.property-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    background: #F1F3F5;
    color: #495057;
}

.property-tag.rating-tag {
    background: var(--brand-yellow);
    color: #212529;
}

.pet-friendly-tag {
    display: inline-flex !important;
    align-items: center;
    gap: 0.25rem;
    background: #E8F5E9;
    color: #2E7D32;
}

.pet-friendly-tag svg {
    flex-shrink: 0;
    stroke: #2E7D32;
}

.property-card-price {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid #F1F3F5;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-family: 'Now', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--brand-red);
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.competitor-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.competitor-price {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.7rem;
    color: #868E96;
}

.competitor-name {
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
}

.competitor-value {
    text-decoration: line-through;
    text-decoration-color: var(--brand-red);
    text-decoration-thickness: 1.5px;
}

/* === Coupon Discount Badge === */

.coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    margin-top: 0.25rem;
}

.coupon-badge svg {
    flex-shrink: 0;
    stroke: #2E7D32;
}

.modal-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.modal-price-section .competitor-prices {
    justify-content: flex-end;
}

/* === Book Now Buttons === */

.book-now-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--brand-red);
    color: #FFFFFF;
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-family: 'Now', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.book-now-button:hover {
    background: #D42E23;
    box-shadow: 0 2px 8px rgba(238, 53, 40, 0.3);
}

.book-now-button svg {
    flex-shrink: 0;
}

.chat-book-now {
    margin-top: 0.5rem;
}

.modal-book-now {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
}

.modal-book-now .book-now-button {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 0.625rem;
}

.show-more-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.show-more-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #FFFFFF;
    border: 1.5px solid #DEE2E6;
    border-radius: 1.25rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.show-more-button:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 1px 4px rgba(0, 143, 193, 0.15);
    background: #F0F9FC;
}

/* === Property Card Clickable === */

.property-card {
    cursor: pointer;
}

/* === Property Detail Modal === */

.property-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.property-modal {
    background: #FFFFFF;
    border-radius: 0.75rem;
    max-width: 900px;
    width: 100%;
    max-height: 90dvh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.25s ease-out;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.property-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: #FFFFFF;
    border-radius: 0.75rem;
    padding: 2.5rem 3rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Gallery */

.modal-gallery-main {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 0.75rem 0.75rem 0 0;
}

.modal-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 143, 193, 0.8);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-nav:hover {
    background: rgba(0, 143, 193, 1);
}

.gallery-prev {
    left: 0.75rem;
}

.gallery-next {
    right: 0.75rem;
}

.gallery-caption {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    background: rgba(0, 143, 193, 0.85);
}

.gallery-counter {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 143, 193, 0.85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
}

.modal-gallery-thumbs {
    display: flex;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    overflow-x: auto;
    background: #F5F6F8;
}

.modal-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.modal-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #CED4DA;
    border-radius: 2px;
}

.gallery-thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.25rem;
    cursor: pointer;
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.2s, outline-color 0.2s;
    outline: 2px solid transparent;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    outline-color: var(--brand-blue);
}

/* Modal Body */

.modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-title {
    font-family: 'Now', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--bot-text);
    line-height: 1.3;
    margin: 0;
}

.modal-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.modal-location svg {
    flex-shrink: 0;
}

.modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: #495057;
}

.modal-detail-item svg {
    flex-shrink: 0;
    color: var(--brand-blue);
}

.modal-tags-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.modal-description {
    margin-top: 0.5rem;
}

.modal-description h3 {
    font-family: 'Now', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--bot-text);
    margin: 0 0 0.5rem;
}

.modal-description-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #495057;
}

.modal-description-content p {
    margin: 0 0 0.75rem;
}

.modal-description-content p:last-child {
    margin-bottom: 0;
}

.modal-description-content ul,
.modal-description-content ol {
    margin: 0 0 0.75rem;
    padding-left: 1.5rem;
}

.modal-description-content li {
    margin-bottom: 0.25rem;
}

.modal-description-content strong,
.modal-description-content b {
    font-weight: 700;
    color: var(--bot-text);
}

/* === Guest Reviews === */

.modal-reviews {
    margin-bottom: 1rem;
}

.review-card {
    background: #F8F9FA;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--brand-yellow);
}

.review-card:last-child {
    margin-bottom: 0;
}

.review-comments {
    font-size: 0.8625rem;
    line-height: 1.6;
    color: #495057;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-guest {
    font-weight: 600;
    font-style: italic;
}

/* === Property Map === */

.modal-map {
    margin-bottom: 1rem;
}

.modal-map-frame {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #DEE2E6;
}

.modal-map-frame iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

@media (max-width: 640px) {
    .property-modal {
        max-height: 95dvh;
        border-radius: 0.75rem 0.75rem 0 0;
        align-self: flex-end;
    }

    .modal-gallery-main {
        height: 260px;
        border-radius: 0.75rem 0.75rem 0 0;
    }

    .modal-body {
        padding: 1rem;
    }

    .property-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
}

@media (max-width: 640px) {
    .property-cards-container {
        grid-template-columns: 1fr;
    }

    .property-card-image {
        height: 160px;
    }
}

/* === Typing Indicator === */

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.25rem 0;
    align-items: center;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #868E96;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* === Input Area === */

.chat-input-area {
    flex-shrink: 0;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid #E2E5EA;
    background: #FAFBFC;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 1.5rem;
    padding: 0.375rem 0.375rem 0.375rem 1rem;
    transition: border-color 0.2s;
}

.chat-input-wrapper:focus-within {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 143, 193, 0.15);
}

.chat-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    font-family: inherit;
    background: transparent;
    color: var(--bot-text);
    padding: 0.375rem 0;
}

.chat-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: var(--send-btn);
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.1s;
}

.send-button:hover:not(:disabled) {
    background: var(--send-btn-hover);
}

.send-button:active:not(:disabled) {
    transform: scale(0.93);
}

.send-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* === Welcome Hero === */

.welcome-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin: auto;
    max-width: 480px;
}

.welcome-logo {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.welcome-title {
    font-family: 'Now', 'Open Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.welcome-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.welcome-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.welcome-chip {
    background: #FFFFFF;
    border: 1.5px solid #DEE2E6;
    border-radius: 1.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    color: var(--bot-text);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.welcome-chip:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 1px 4px rgba(0, 143, 193, 0.15);
}

/* === Loading Screen === */

.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
}

.loading-progress {
    display: block;
    width: 8rem;
    height: 8rem;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: var(--brand-blue);
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--text-muted);
}

.loading-progress-text::after {
    content: var(--blazor-load-percentage-text, "Loading");
}

/* === Error UI === */

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* === Responsive === */

@media (max-width: 600px) {
    .chat-header {
        padding: 0.625rem 1rem;
    }

    .chat-messages {
        padding: 1rem 0.75rem;
    }

    .chat-bubble {
        max-width: 88%;
        font-size: 0.875rem;
    }

    .chat-input-area {
        padding: 0.625rem 0.75rem;
    }

    .chat-input-wrapper {
        padding: 0.25rem 0.25rem 0.25rem 0.875rem;
    }

    .send-button {
        width: 2.25rem;
        height: 2.25rem;
    }

    .modal-tags-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-price-section {
        align-self: flex-end;
    }

    .modal-price-section .competitor-prices {
        justify-content: flex-end;
    }

    .modal-close {
        position: sticky;
        top: 0.5rem;
        float: right;
        margin-right: 0.5rem;
        margin-top: 0.5rem;
        margin-bottom: -2.75rem;
    }
}