* {
    box-sizing: border-box;
}

:root {
    --shell-gap: 24px;
    --shell-padding: 0px;
    --shell-double: calc(var(--shell-gap) * 2);
    --header-icon-size: 28px;
    --header-icon-radius: 10px;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--shell-padding);
    overflow: hidden;
    max-width: 100vw;
}

.search-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2000;
    backdrop-filter: blur(3px) saturate(1.05);
}

.search-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0.2;
}

.search-hero {
    position: relative;
    text-align: center;
    color: #1a2b4b;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    z-index: 1;
}

.catamaran-scene {
    position: relative;
    width: 240px;
    height: 160px;
    margin: 0 auto 18px;
}

.loading-ring {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.25);
    border-top-color: #22b2eb;
    border-right-color: #1692c6;
    box-shadow: 0 0 20px rgba(34, 178, 235, 0.4);
    animation: spin 2.2s linear infinite;
}


.catamaran-icon {
    width: 200px;
    height: 120px;
    animation: boatSwell 4.8s ease-in-out infinite;
    filter: drop-shadow(0 10px 18px rgba(26, 43, 75, 0.18));
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.search-status {
    margin-top: 50px;
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: rgba(26, 43, 75, 0.95);
    letter-spacing: 0.1px;
    line-height: 1.5;
    animation: textPulse 2.6s ease-in-out infinite;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


@keyframes boatSwell {
    0%,
    100% {
        transform: translateY(0) rotate(0.4deg) translateX(-2px);
    }

    30% {
        transform: translateY(-4px) rotate(-1.2deg) translateX(1px);
    }

    60% {
        transform: translateY(2px) rotate(1deg) translateX(3px);
    }
}


@keyframes textPulse {
    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .search-overlay,
    .loading-ring::before,
    .catamaran-icon,
    .search-status,
    .boat-preview {
        animation: none !important;
    }
}

.boat-preview {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - var(--shell-double));
    max-height: calc(100dvh - var(--shell-double));
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.boat-preview.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.boat-preview-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    height: 100%;
}

.boat-preview-link.disabled {
    cursor: default;
}

.boat-preview-link:not(.disabled):hover {
    opacity: 0.92;
}

.boat-preview-link:not(.disabled):active {
    opacity: 0.7;
    transform: scale(0.99);
}

.boat-preview img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 16px;
    object-fit: contain;
    background: #f8f9fa;
}

.boat-preview-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 18px;
    font-size: 15.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, rgba(26, 43, 75, 0.65) 0%, rgba(26, 43, 75, 0.4) 30%, rgba(26, 43, 75, 0.2) 60%, rgba(26, 43, 75, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.boat-preview-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a2b4b;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    z-index: 2;
}

.boat-preview-close:hover {
    background: #eef2ff;
    color: #3849b6;
    transform: translateY(-1px);
}

.boat-preview-close:active {
    transform: translateY(0);
}

.boat-discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 36px;
    height: 30px;
    padding: 0 6px;
    border-radius: 15px;
    background: rgba(255, 212, 59, 0.75);
    backdrop-filter: blur(6px);
    color: #1a2b4b;
    font-size: 13px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(250, 176, 5, 0.2);
    z-index: 3;
    letter-spacing: 0.1px;
    line-height: 1;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.boat-discount-badge.visible {
    display: flex;
}

.layout-shell {
    display: grid;
    grid-template-columns: 400px minmax(500px, 600px) 400px;
    gap: var(--shell-gap);
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: var(--shell-gap);
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    overflow-x: hidden;
}

.layout-photo,
.layout-chat,
.layout-calendar {
    display: flex;
    height: 100%;
}

.layout-photo,
.layout-calendar {
    align-items: flex-start;
}

.layout-chat {
    align-items: stretch;
}

.layout-chat {
    justify-content: center;
    width: 100%;
    min-height: 0;
}

.chat-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100%;
    min-height: 0;
}

@media (max-width: 1200px) {
    .layout-shell {
        grid-template-columns: minmax(500px, 600px) 400px;
    }

    .layout-photo {
        display: none;
    }
}

    @media (max-width: 1050px) {
    .layout-shell {
        grid-template-columns: minmax(0, 100%);
        gap: 0;
        padding: 0;
        height: 100vh;
        height: 100dvh;
        justify-content: stretch;
    }

    .layout-calendar {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .layout-chat {
        height: 100vh;
        height: 100dvh;
        width: 100%;
        max-width: 100%;
    }

    .chat-container {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        max-width: 100%;
    }

    .availability-widget {
        display: none !important;
    }

    .availability-widget.visible {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 50% !important;
        right: auto !important;
        width: min(600px, 100%) !important;
        max-width: min(600px, 100%) !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        transform: translateX(-50%) !important;
        border-radius: 0 !important;
        z-index: 2200 !important;
        pointer-events: auto !important;
    }

    .calendar-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .header-right {
        gap: 8px;
    }

    .header-title-link {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .availability-widget .widget-close {
        display: flex !important;
    }
}

.chat-container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
    min-height: 0;
    /* modern browser fix */
    transition: transform 0.6s ease-in-out;
    transform: translateX(0);
}


.chat-header {
    position: relative;
    background: #ffffff;
    color: #1a2b4b;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    min-height: 54px;
    transition: background-color 0.2s;
    gap: 12px;
}

.chat-header:hover {
    background: #f8f9fa;
}

.header-logo {
    height: clamp(20px, 2.88vw, 31px);
    width: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header-title-link {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #9aa3b2;
    background: none;
    border: none;
    padding: 6px 6px;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.header-title-link:hover {
    color: #64748b;
}

.header-title-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.2);
    border-radius: 8px;
}

.icon-button {
    cursor: pointer;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--header-icon-size);
    height: var(--header-icon-size);
    border-radius: var(--header-icon-radius);
    background: #f8fafc;
    color: #64748b;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    padding: 0;
    line-height: 1;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.icon-button svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.2s ease;
}

.icon-button:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.icon-button.no-hover:hover {
    background: #f8fafc !important;
    color: #64748b !important;
    transform: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

.calendar-toggle-btn.no-hover {
    transition: none !important;
}

.calendar-toggle-btn.no-hover:hover svg {
    transform: none !important;
}

.icon-button:hover svg {
    transform: scale(1.05);
}

.icon-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.icon-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.chat-header p {
    font-size: 14px;
    opacity: 0.9;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    background: #f8f9fa;
    min-height: 0;
}

.message {
    margin-bottom: 5px;
    animation: messageSlide 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 0;
    overflow: visible;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-content {
    background: white;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    margin-bottom: 15px;
    max-width: 100%;
}

/* Ensure images and tables in message content scale properly */
.message-content img {
    max-width: 100%;
    height: auto;
}

.message-content table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.message.assistant .message-content {
    background: #f0f4ff;
    border-left: 4px solid #667eea;
}

.chat-input-container {
    padding: 10px 15px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.input-group {
    display: flex;
    gap: 12px;
}

.chat-input {
    flex: 1;
    padding: 10px 18px;
    border: 2px solid #e9ecef;
    border-radius: 24px;
    font-size: 16px;
    /* 16px prevents iOS auto-zoom */
    outline: none;
    transition: all 0.3s ease;
    min-width: 0;
    /* Important for flexbox shrinking */
}

.chat-input:focus {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.send-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.send-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.send-button:active:not(:disabled) {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.send-button:active {
    transform: translateY(0);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #c33;
}

.example-queries {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.example-queries h3 {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    white-space: nowrap;
}

.example-query {
    display: inline-block;
    padding: 5px 12px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 14px;
    font-size: 12px;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.example-query:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        height: 100%;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }

    body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        display: block !important;
        align-items: unset !important;
        justify-content: unset !important;
        min-height: 100vh;
        min-height: 100dvh;
        max-width: 100vw;
    }

    .boat-preview {
        display: none;
    }

    .chat-layout {
        padding: 0;
        width: 100%;
        max-width: 100vw;
    }

    .layout-shell {
        width: 100%;
        max-width: 100vw;
    }

    .chat-container {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }

    .chat-messages {
        padding: 10px;
    }

    .chat-input-container {
        padding: 10px;
    }

    .example-queries {
        margin-top: 5px;
        padding: 5px 8px;
    }

    .chat-header {
        justify-content: space-between;
        min-height: 48px;
        padding: 0 10px;
    }

    .header-logo {
        height: 20px;
    }

    .message-content p {
        margin: 0;
    }

    .input-group {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .chat-input {
        flex: 1;
        width: auto;
        padding: 10px 14px;
        font-size: 14px;
    }

    .send-button {
        flex: 0 0 auto;
        padding: 10px 16px;
        font-size: 14px;
    }
}

.message-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    opacity: 1;
    position: relative;
    align-items: center;
}

.more-actions-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.action-button {
    background: white;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-button:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #ced4da;
    transform: translateY(-1px);
}

.action-button svg {
    width: 14px;
    height: 14px;
}

.action-button[data-reservation-id] svg {
    width: 18px;
    height: 18px;
}

.action-button[data-reservation-id] {
    background: #f6f7fb;
    border-color: #d7dce6;
    color: #5a6aa5;
    box-shadow: none;
}

.action-button[data-reservation-id]:hover {
    background: #eef1f8;
    border-color: #c7cfdf;
    color: #4b5a92;
    transform: translateY(-1px);
}

/* Very subtle yellow accent for PDF button (almost same as base) */
.action-button[data-pdf-id] {
    background: #ffffff;
    border-color: #f3e6b5;
    color: #6c757d; /* same grey as base buttons */
    box-shadow: none;
    font-weight: 600;
}

.action-button[data-pdf-id]:hover {
    background: #fffaf0;
    border-color: #e6d28b;
    color: #495057; /* same hover grey as base buttons */
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(230, 210, 139, 0.25);
}

.action-button[data-pdf-id] svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.extra-actions-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 5;
    min-width: 190px;
}

.message-actions.show-extra .extra-actions-menu {
    display: flex;
}





/* ========== AVAILABILITY GRID WIDGET ========== */
.availability-widget {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - var(--shell-double));
    max-height: calc(100dvh - var(--shell-double));
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 0;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2200;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.availability-widget.visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 1051px) {
    .availability-widget {
        display: flex !important;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .availability-widget .widget-close {
        display: none !important;
    }
}

.widget-header {
    background: #ffffff;
    color: #1a2b4b;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    min-height: 54px;
    position: relative;
    z-index: 2300;
    pointer-events: auto;
}

.widget-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a2b4b;
    margin: 0;
    letter-spacing: 0.5px;
}

.widget-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.checkin-filters {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.checkin-filter-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    white-space: nowrap;
    text-align: left;
}

.checkin-filter-item input[type="checkbox"] {
    width: 12px;
    height: 12px;
    margin: 0;
    accent-color: #3b5ccc;
    cursor: pointer;
}

.checkin-recommended-wrap {
    display: inline;
    position: relative;
    cursor: help;
    color: #c9a227;
    margin-left: 4px;
    opacity: 0.95;
    vertical-align: middle;
}

.checkin-recommended-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-top: -1px;
}

/* Centered tooltip in calendar – shown on star hover */
.checkin-friday-tooltip-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(160deg, rgba(25, 32, 56, 0.98) 0%, rgba(12, 16, 30, 0.98) 100%);
    color: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    width: 280px;
    max-width: 280px;
    white-space: normal;
    line-height: 1.45;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1100;
    box-shadow: 0 10px 26px rgba(8, 12, 24, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.availability-widget.show-friday-tooltip .checkin-friday-tooltip-center {
    opacity: 1;
}

.widget-close {
    background: #f4f6fb;
    border: 1px solid #e2e8f0;
    font-size: 18px;
    color: #3b5ccc;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    position: relative;
    z-index: 2300;
    pointer-events: auto;
}

.widget-close:hover {
    background: #eef2ff;
    color: #3343a5;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.widget-close:active {
    transform: translateY(0);
}

.widget-close:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.grid-container {
    padding: 14px 0 20px 0;
    overflow-x: auto;
    overflow-y: auto;
    /* max-height: 378px; Removed to adapt to content */
    border-radius: 12px;
    isolation: isolate;
    scroll-padding-left: 0;
    position: relative;
    background: #ffffff;
    /* Ensure we can scroll to scrollLeft = 0 to see sticky column */
    flex: 1 1 auto;
    min-height: 280px;
}

.grid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    z-index: 0;
    pointer-events: none;
}

.availability-grid {
    display: grid;
    grid-template-columns: max-content repeat(var(--availability-columns, 5), 68px);
    gap: 7px;
    row-gap: 4px;
    column-gap: 7px;
    padding: 0 20px 0 0;
    margin-left: 20px;
    min-width: fit-content;
    position: relative;
    z-index: 1;
    /* Left margin instead of padding - allows sticky to work at left: 0 */
}

.grid-row {
    display: contents;
}

.grid-header-cell {
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #495057;
    background: #f8f9fa;
    border-radius: 5px;
    white-space: nowrap;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.grid-header-cell:first-child {
    position: sticky;
    left: 0;
    z-index: 1500;
    background: #f8f9fa;
    border-radius: 5px;
    margin-left: -20px;
    padding-left: 20px;
    /* Sticks at left: 0, but has margin/padding for visual spacing */
}

.grid-boat-label {
    padding: 9px 11px 9px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #1a2b4b;
    background: #f8f9fa;
    border-radius: 7px;
    white-space: nowrap;
    vertical-align: middle;
    position: sticky;
    left: 0;
    z-index: 1500;
    margin-left: -20px;
    /* Sticks at left: 0, negative margin to offset grid margin */
}

/* Prevent background bleed at rounded corners and gaps of sticky labels */
.grid-boat-label::before,
.grid-header-cell:first-child::before {
    content: '';
    position: absolute;
    top: -5px;
    /* Cover half of the 7px gap above */
    bottom: -5px;
    /* Cover half of the 7px gap below */
    left: 0;
    /* Start from sticky element's left edge (after negative margin) */
    right: -2px;
    /* Slight overlap with the grid cells */
    background: #ffffff;
    /* Match widget background to mask scrolling content */
    z-index: -1;
    border-radius: 0;
}

.boat-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.checkin-day {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: #667eea;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grid-cell {
    padding: 0;
    vertical-align: middle;
    position: relative;
    z-index: auto;
}

.cell-content {
    width: 68px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.cell-content.available,
.cell-content.requested {
    color: white;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.price-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: linear-gradient(160deg, rgba(25, 32, 56, 0.98) 0%, rgba(12, 16, 30, 0.98) 100%);
    color: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
    box-shadow: 0 10px 26px rgba(8, 12, 24, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    line-height: 1.4;
    backdrop-filter: blur(6px);
}

.grid-container.suppress-tooltips .price-tooltip {
    opacity: 0 !important;
}

.grid-container.suppress-tooltips .cell-content,
.grid-container.suppress-tooltips .cell-content:hover {
    transform: none !important;
    box-shadow: none !important;
    z-index: 1;
}

/* First row: point down */
.price-tooltip.pos-down {
    top: calc(100% + 10px);
}

/* Last row & Default: point up */
.price-tooltip.pos-up {
    bottom: calc(100% + 10px);
}

.price-tooltip .main-price {
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 3px;
    color: #f8fafc;
}

/* Arrow for Upward tooltip (default) */
.price-tooltip.pos-up::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(12, 16, 30, 0.98);
}

/* Arrow for Downward tooltip */
.price-tooltip.pos-down::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(25, 32, 56, 0.98);
}

.cell-content:hover .price-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cell-content.available {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
}

.cell-content.booked {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.cell-content.on_hold {
    background: linear-gradient(135deg, #f28b82 0%, #e57373 100%);
    color: white;
}

.cell-price {
    font-size: 11px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    text-align: center;
}

.tooltip-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.tooltip-row:last-child {
    margin-bottom: 0;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.tooltip-icon.tooltip-icon-discount {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M20 12l-8 8-8-8V4h8l8 8z'/><circle cx='7.5' cy='8.5' r='1.5'/></svg>");
}

.tooltip-icon.tooltip-icon-package {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393c5fd' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M21 8l-9 5-9-5'/><path d='M3 8l9-5 9 5v8l-9 5-9-5V8z'/><path d='M12 13v8'/></svg>");
}

.tooltip-icon.tooltip-icon-marina {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fca5a5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s7-6.2 7-12a7 7 0 1 0-14 0c0 5.8 7 12 7 12z'/><circle cx='12' cy='10' r='2.5'/></svg>");
}

.cell-content.requested {
    background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(250, 176, 5, 0.4);
    font-weight: 700;
}

.cell-content.requested .cell-price {
    color: white;
}

.cell-content:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 1000;
}

.cell-content.available:hover,
.cell-content.requested:hover {
    z-index: 1000;
}

.grid-legend {
    display: flex;
    gap: 7px;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.availability-footer {
    padding: 6px 20px 5px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.availability-divider {
    width: 100%;
    height: 1px;
    background: #e9ecef;
    margin: 6px 0;
}

.availability-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: #6c757d;
    min-height: 28px;
}

.availability-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.availability-contact a:hover {
    color: #1a2b4b;
}

.availability-contact .contact-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.availability-contact .contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    flex-shrink: 0;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 8.4px;
    color: #6c757d;
    white-space: nowrap;
    line-height: 1;
}

.legend-dot {
    width: 8.4px;
    height: 8.4px;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-dot.available {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
}

.legend-dot.booked {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.legend-dot.on_hold {
    background: linear-gradient(135deg, #f28b82 0%, #e57373 100%);
}

.legend-dot.requested {
    background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
}

body.searching .availability-widget {
    z-index: 1500;
}

body.searching .availability-widget .grid-header-cell:not(:first-child),
body.searching .availability-widget .cell-content,
body.searching .availability-widget .grid-legend {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

/* Calendar Toggle Button - Mobile Only */
.calendar-toggle-btn {
    display: none;
    z-index: 100;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.status-message {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 12px;
    font-family: 'Outfit', sans-serif;
    background: transparent;
    border-radius: 10px;
    width: fit-content;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    font-size: 1.3em;
    display: flex;
    align-items: center;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    animation: statusPulse 1.5s infinite ease-in-out;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

.status-icon svg {
    width: 1.3em;
    height: 1.3em;
    background: transparent !important;
}

.status-text {
    font-size: 1.3em;
    /* Same as icon */
    color: #333;
    font-weight: 500;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .layout-shell {
        grid-template-columns: 1fr;
        justify-content: stretch;
        width: 100%;
        max-width: 100%;
    }

    .layout-chat {
        width: 100%;
        max-width: 100%;
    }

    .header-right {
        gap: 6px;
    }

    .header-title-link {
        font-size: 10px;
        letter-spacing: 0.2px;
    }

    /* Make widget full-screen overlay with 20% smaller content */
    .availability-widget {
        position: fixed;
        inset: 0;
        width: 100vw !important;
        height: 100dvh;
        max-height: 100dvh;
        max-width: 100vw;
        border-radius: 0;
        padding: 0 16px 16px 16px;
        z-index: 2200;
        transform: translateY(100%);
        font-size: 0.8rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    /* Input Area Mobile Optimization */
    .chat-input-container {
        padding: 8px 10px;
    }

    .chat-input {
        padding: 8px 14px;
        font-size: 14px;
    }

    .send-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Action Buttons Mobile Optimization */
    .message-actions {
        justify-content: flex-start;
        /* Left align on mobile */
        flex-wrap: nowrap;
        /* Try to keep on one line */
        overflow-x: auto;
        /* Scroll if absolutely needed */
        gap: 8px;
    }

    .message-actions.show-extra {
        overflow: visible;
    }

    .message-actions .extra-actions-menu {
        left: 0;
        transform: none;
    }

    .action-button {
        padding: 6px 10px;
        font-size: 11px;
        /* Slightly smaller */
        white-space: nowrap;
        /* Prevent breaking */
        flex: 0 0 auto;
    }



    .availability-widget.visible {
        transform: translateY(0);
        left: 0;
        right: 0;
        width: 100vw !important;
        height: 100dvh;
        max-height: 100dvh;
    }


    /* Availability widget header: compact, no top margin, same layout as desktop */
    .widget-header {
        padding: 8px 16px 10px;
        min-height: 44px;
        flex-shrink: 0;
    }

    /* Adjust grid container for mobile */
    .grid-container {
        background: white;
        border-radius: 0;
        margin: 0 -16px 0 -16px;
        padding: 16px;
        padding-top: 11px;
        padding-left: 0;
        /* 20% smaller from 14px */
        max-height: calc(100vh - 180px);
        /* Leave room for header and legend */
    }

    /* Scale down grid elements by 20% - use !important to override desktop styles */
    .grid-header-cell,
    .grid-boat-label,
    .grid-cell {
        font-size: 11px !important;
        padding: 5px !important;
        min-width: 50px !important;
    }

    .grid-boat-label {
        min-width: 90px !important;
        padding: 5px 8px !important;
        font-size: 10px !important;
    }

    .availability-grid {
        gap: 5px !important;
        row-gap: 4px !important;
        column-gap: 5px !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .grid-header-cell:first-child {
        margin-left: 0 !important;
        padding-left: 8px !important;
    }

    .grid-boat-label {
        margin-left: 0 !important;
        padding-left: 8px !important;
    }

    .grid-container::before {
        width: 0;
    }

    /* Don't shift chat on mobile */
    .chat-container.shifted {
        transform: translateX(0) !important;
    }

    /* Integrate legend into white container on mobile */
    .availability-footer {
        margin: 0 -16px -16px -16px;
        padding: 8px 16px 16px 16px;
        background: white;
        border-radius: 0;
        flex-shrink: 0;
    }

    .grid-legend {
        margin: 0;
    }
    
    /* Ensure contact icons are visible on mobile */
    .availability-contact {
        min-height: 32px;
    }
    
    .availability-contact .contact-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    /* Keep min-height so centered Friday tooltip always has space */
    .grid-container {
        flex-shrink: 1;
        min-height: 280px;
    }
}

/* Very small screens (below 450px) - ensure no horizontal overflow */
@media (max-width: 450px) {
    html, body, .layout-shell, .layout-chat, .chat-layout, .chat-container {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .chat-messages {
        padding: 8px;
    }

    .message-content {
        padding: 8px 10px;
    }

    .chat-header {
        padding: 0 8px;
    }

    .chat-input-container {
        padding: 8px;
    }

    .input-group {
        gap: 6px;
    }

    .send-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Info Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.16);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e9ecef;
    color: #1a237e;
}

.lang-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f5;
}

.lang-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.lang-title {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-content {
    font-size: 14px;
    line-height: 1.6;
    color: #2d3436;
}

.lang-content strong {
    display: block;
    margin-bottom: 4px;
    color: #1a2b4b;
}

.lang-content ul {
    margin: 0;
    padding-left: 18px;
}

.lang-content li {
    margin-bottom: 3px;
}

/* Tab Styles */
.tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 0;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    position: relative;
    bottom: -2px;
}

.tab-button:hover {
    color: #667eea;
}

.tab-button.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.3s ease-out;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Boats Grid */
.boats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.boat-card {
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.2s;
}

.boat-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.boat-card h4 {
    margin: 0 0 8px 0;
    color: #1a2b4b;
    font-size: 16px;
}

.boat-card p {
    margin: 0 0 10px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6c757d;
}

.boat-link {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.boat-link:hover {
    color: #4c5fd5;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 700;
    font-size: 1.05em;
    color: #1a237e;
    margin-bottom: 8px;
    display: block;
}

.faq-answer {
    color: #444;
    line-height: 1.6;
    font-size: 0.95em;
}

.timestamp {
    font-size: 0.8em;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

/* ========== RESERVATION MODAL STYLES ========== */
.reservation-modal {
    max-width: 550px;
}

.form-section {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:read-only {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.form-input-small {
    font-size: 13px;
    padding: 8px 12px;
}

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

.form-error {
    color: #c33;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-input.error,
.form-textarea.error {
    border-color: #c33;
}

.form-discount-warning {
    font-size: 11px;
    color: #f59e0b;
    margin-top: 4px;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.form-button {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.form-button-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.form-button-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-button-secondary {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.form-button-secondary:hover {
    background: #f8f9fa;
    border-color: #ced4da;
}

.reservation-success {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
    margin-top: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .reservation-modal {
        max-width: 95%;
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-section {
        margin-left: 0 !important;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

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