/* Upwell Surf App Styles - Scoped to prevent WordPress theme conflicts */

/* App root defaults */
#upwellApp {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100%;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

/* Reset and Base (scoped) */
#upwellApp * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
#upwellApp .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
#upwellApp .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#upwellApp h2 {
    color: #2563eb;
    margin-bottom: 10px;
}

/* Action Buttons */
#upwellApp .action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* General button styles (works outside #upwellApp) */
.btn,
.action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn.primary,
.action-btn.primary {
    background: #2563eb;
    color: #fff;
}

.btn.primary:hover,
.action-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn.secondary,
.action-btn.secondary {
    background: #64748b;
    color: #fff;
}

.btn.secondary:hover,
.action-btn.secondary:hover {
    background: #475569;
    transform: translateY(-1px);
}

.btn.danger,
.action-btn.danger,
.action-btn-small.danger {
    background: #dc2626;
    color: #fff;
}

.btn.danger:hover,
.action-btn.danger:hover,
.action-btn-small.danger:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* Button styles scoped to #upwellApp */
#upwellApp .btn,
#upwellApp .action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

#upwellApp .btn.primary,
#upwellApp .action-btn.primary {
    background: #2563eb;
    color: #fff;
}

#upwellApp .btn.primary:hover,
#upwellApp .action-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

#upwellApp .btn.secondary,
#upwellApp .action-btn.secondary {
    background: #64748b;
    color: #fff;
}

#upwellApp .btn.secondary:hover,
#upwellApp .action-btn.secondary:hover {
    background: #475569;
    transform: translateY(-1px);
}

#upwellApp .action-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

/* Forecast Section */
#upwellApp .forecast-section {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Storm Warning Banner */
#upwellApp .storm-warning-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%) !important;
    color: white !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin: 0 0 30px 0 !important;
    text-align: center !important;
    box-shadow: 0 4px 16px rgba(153, 27, 27, 0.35) !important;
    width: 729px !important;
    max-width: 729px !important;
    min-width: 729px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

/* Responsive: on smaller screens, allow 100% width */
@media (max-width: 800px) {
    #upwellApp .storm-warning-banner {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

/* Ensure parent containers don't constrain banner */
#upwellApp .forecast-section,
#upwellApp {
    overflow-x: visible !important;
}

#upwellApp .storm-warning-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#upwellApp .storm-warning-text {
    text-align: left;
}

#upwellApp .storm-warning-title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    color: inherit;
}

#upwellApp .storm-warning-subtitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
}

#upwellApp .storm-warning-sponsor {
    margin: 8px 0 0 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95;
    color: inherit;
}

#upwellApp .storm-warning-video-link {
    color: #fef08a !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#upwellApp .storm-warning-video-link:hover {
    color: #fff !important;
}

#upwellApp .storm-warning-actions {
    margin: 14px 0 0 0;
}

#upwellApp .storm-warning-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 700;
    color: #991b1b !important;
    background: #fff !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#upwellApp .storm-warning-form-btn:hover {
    background: #fef2f2 !important;
    color: #7f1d1d !important;
}

#upwellApp .storm-warning-listing {
    margin-top: 14px;
    text-align: center;
}

#upwellApp .storm-warning-listing-open {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

#upwellApp .storm-warning-listing-open:focus-visible {
    outline: 3px solid #fef08a;
    outline-offset: 3px;
}

#upwellApp .storm-warning-listing-open:hover .storm-warning-listing-photo {
    filter: brightness(1.06);
}

#upwellApp .storm-warning-listing-photo {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    vertical-align: middle;
}

#upwellApp .storm-warning-emoji {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

#upwellApp .forecast-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

#upwellApp select {
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
    background: #fff;
}

#upwellApp select:focus {
    border-color: #2563eb;
    outline: none;
}

/* Current Conditions */
#upwellApp .current-conditions {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#upwellApp .conditions-summary h3 {
    color: #2563eb;
    margin-bottom: 10px;
}

#upwellApp .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

#upwellApp .condition-item {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#upwellApp .condition-value {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

#upwellApp .condition-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

/* Wave Height Colors */
#upwellApp .wave-height-1 { color: #10b981; }
#upwellApp .wave-height-2 { color: #3b82f6; }
#upwellApp .wave-height-3 { color: #f59e0b; }
#upwellApp .wave-height-4 { color: #ef4444; }
#upwellApp .wave-height-5 { color: #dc2626; }

/* Forecast List */
#upwellApp .forecast-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#upwellApp .forecast-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#upwellApp .forecast-date {
    display: flex;
    flex-direction: column;
}

#upwellApp .forecast-day {
    font-weight: bold;
    color: #2563eb;
}

#upwellApp .forecast-conditions {
    font-size: 14px;
    color: #64748b;
}

#upwellApp .forecast-temps {
    display: flex;
    gap: 10px;
    align-items: center;
}

#upwellApp .forecast-high {
    font-weight: bold;
    color: #ef4444;
}

#upwellApp .forecast-low {
    color: #64748b;
}

#upwellApp .forecast-waves {
    text-align: center;
}

#upwellApp .forecast-wave-height {
    font-weight: bold;
    font-size: 18px;
}

#upwellApp .forecast-wave-label {
    font-size: 12px;
    color: #64748b;
}

#upwellApp .forecast-wind {
    text-align: center;
}

#upwellApp .forecast-wind-speed {
    font-weight: bold;
}

#upwellApp .forecast-wind-direction {
    font-size: 12px;
    color: #64748b;
}

#upwellApp .forecast-water-temp {
    text-align: center;
}

#upwellApp .forecast-water-temp-value {
    font-weight: bold;
    font-size: 18px;
    color: #06b6d4;
}

#upwellApp .forecast-water-temp-label {
    font-size: 12px;
    color: #64748b;
}

#upwellApp .forecast-tide {
    text-align: center;
}

#upwellApp .forecast-tide-value {
    font-weight: bold;
    font-size: 18px;
    color: #8b5cf6;
}

#upwellApp .forecast-tide-label {
    font-size: 12px;
    color: #64748b;
}

/* Reports Section */
#upwellApp .reports-section {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

#upwellApp .reports-list {
    display: grid;
    gap: 15px;
}

#upwellApp .report-card {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#upwellApp .report-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#upwellApp .report-location {
    font-weight: bold;
    color: #2563eb;
}

#upwellApp .report-time {
    color: #64748b;
    font-size: 14px;
}

#upwellApp .report-conditions {
    margin: 10px 0;
    font-size: 16px;
}

#upwellApp .report-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

#upwellApp .report-image,
#upwellApp .report-video {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid transparent;
}

#upwellApp .report-image:hover,
#upwellApp .report-video:hover {
    transform: scale(1.02);
    border-color: #2563eb;
}

#upwellApp .report-image:active,
#upwellApp .report-video:active {
    transform: scale(0.98);
}

/* Comments Section */
#upwellApp .report-comments-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

#upwellApp .comments-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 15px;
}

#upwellApp .comment-item {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 8px;
}

#upwellApp .comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#upwellApp .comment-form-container {
    margin-top: 15px;
}

#upwellApp .comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#upwellApp .comment-input,
#upwellApp .comment-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

#upwellApp .comment-input:focus,
#upwellApp .comment-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#upwellApp .comment-textarea {
    min-height: 80px;
}

#upwellApp .btn-small {
    padding: 8px 16px;
    font-size: 13px;
    align-self: flex-start;
}

#upwellApp .action-btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

#upwellApp .comment-count {
    font-weight: normal;
}

/* Share Modal Styles */
#shareModal .modal-content {
    max-width: 500px;
}

#shareModal .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Spots Section */
#upwellApp .spots-section {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

#upwellApp .spots-list {
    display: grid;
    gap: 10px;
}

#upwellApp .spot-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#upwellApp .spot-name {
    font-weight: bold;
    color: #2563eb;
}

#upwellApp .spot-action {
    padding: 8px 16px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

#upwellApp .spot-action:hover {
    background: #1d4ed8;
}

/* Spot actions layout */
#upwellApp .spot-actions {
    display: flex;
    gap: 8px;
}

/* Anchor styled like button */
#upwellApp a.spot-action {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Surf Spots List (WordPress integration) */
#upwellApp .upwell-surf-spots-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#upwellApp .surf-spots-search-container {
    margin-bottom: 16px;
}

#upwellApp .surf-spots-search {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

#upwellApp .surf-spots-search:focus {
    border-color: #2563eb;
}

#upwellApp .surf-spots-results {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
}

#upwellApp .surf-spots-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}

#upwellApp .spot-list-item {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: block;
}

#upwellApp .spot-list-item:hover {
    background-color: #f8fafc;
}

/* Modal Styles */
/* General modal styles (works outside #upwellApp) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

#upwellApp .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

#upwellApp .modal.show {
    display: flex;
}

/* General modal-content styles (works outside #upwellApp) */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
}

#upwellApp .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* YouTube + support email modal */
.youtube-support-modal-content {
    max-width: 640px;
}

/* Listing-style full listing layout (when property listing is enabled) */
.youtube-support-modal--listing {
    max-width: 1040px;
    width: 96%;
    padding: 0;
    overflow-x: hidden;
    border-radius: 0;
}

#upwellApp .modal-content.youtube-support-modal--listing {
    max-width: 1040px;
    width: 96%;
    padding: 0;
    border-radius: 0;
}

@media (min-width: 900px) {
    .youtube-support-modal--listing,
    #upwellApp .modal-content.youtube-support-modal--listing {
        border-radius: 10px;
    }
}

.youtube-support-modal--listing .modal-header {
    margin-bottom: 0;
}

/* Listing-style listing modal (photo-first, ledger under hero) */
.upwell-listing-modal-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #e4e4e4;
    background: #fff;
}

.upwell-listing-topbar-close {
    font-size: 22px;
    line-height: 1;
    color: #1a1a1a;
}

.upwell-listing-topbar-close:hover {
    color: #006aff;
}

.upwell-listing-hero-wrap {
    position: relative;
    width: 100%;
    background: #0f172a;
}

.upwell-listing-hero-overlay {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    pointer-events: none;
}

.upwell-listing-gallery .upwell-listing-hero-overlay {
    pointer-events: none;
}

.upwell-listing-hero-overlay .upwell-listing-status-pill {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.upwell-listing-photos-faux {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: default;
    white-space: nowrap;
}

.upwell-listing-hero-below {
    padding: 20px 24px 18px;
    border-bottom: 1px solid #e7e7e7;
    background: #fff;
}

.upwell-listing-ledger-price {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.upwell-listing-ledger-price-sub {
    margin: 6px 0 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: #5c5c5c;
}

.upwell-listing-address-heading {
    margin: 10px 0 0 0;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.upwell-listing-stats-inline {
    margin: 14px 0 0 0;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.upwell-listing-stats-inline-item strong {
    font-weight: 700;
    color: #1a1a1a;
}

.upwell-listing-stats-sep {
    display: inline-block;
    padding: 0 12px;
    color: #d4d4d4;
    font-weight: 300;
}

.upwell-listing-prequal-wrap {
    margin: 12px 0 0 0;
}

.upwell-listing-prequal-link {
    font-size: 15px;
    font-weight: 700;
    color: #006aff;
    text-decoration: none;
}

.upwell-listing-prequal-link:hover {
    text-decoration: underline;
}

.upwell-listing-at-a-glance {
    margin: 14px 0 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #545454;
}

.upwell-listing-glance-item {
    display: inline;
}

.upwell-listing-glance-sep {
    display: inline-block;
    padding: 0 8px;
    color: #d4d4d4;
    font-weight: 300;
}

.upwell-listing-block-title {
    margin: 4px 0 12px 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.upwell-listing-special-list {
    list-style: none;
    margin: 0 0 22px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.upwell-listing-special-list li {
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
}

.upwell-listing-engagement {
    margin: 16px 0 0 0;
    font-size: 14px;
    color: #767676;
}

.upwell-listing-video-disclosure {
    margin: 0;
    padding: 0 24px 12px;
    border-bottom: 1px solid #ececec;
    background: #fafafa;
}

.upwell-listing-video-summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #006aff;
    padding: 10px 0;
    list-style: none;
}

.upwell-listing-video-summary::-webkit-details-marker {
    display: none;
}

.upwell-listing-embed-in-details {
    margin-bottom: 8px;
}

.upwell-listing-gallery {
    position: relative;
    width: 100%;
    background: #0f172a;
}

.upwell-listing-gallery-stage {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    background: #0f172a;
}

.upwell-listing-modal-hero {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    background: #0f172a;
}

.upwell-listing-modal-hero-img,
.upwell-listing-gallery-main-img {
    display: block;
    width: 100%;
    height: clamp(220px, 42vh, 420px);
    object-fit: cover;
}

.upwell-listing-gallery-nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1a1a1a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: background 0.15s ease, color 0.15s ease;
}

.upwell-listing-gallery-nav:hover {
    background: #fff;
    color: #006aff;
}

.upwell-listing-gallery-prev {
    left: 10px;
}

.upwell-listing-gallery-next {
    right: 10px;
}

.upwell-listing-gallery-count {
    position: absolute;
    z-index: 3;
    bottom: 50px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.upwell-listing-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 12px 12px;
    overflow-x: auto;
    background: #18181b;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.upwell-listing-gallery-thumb {
    flex: 0 0 auto;
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.75;
    line-height: 0;
    background: transparent;
    transition: opacity 0.15s ease, border-color 0.15s ease;
}

.upwell-listing-gallery-thumb:hover {
    opacity: 1;
}

.upwell-listing-gallery-thumb.is-active {
    border-color: #006aff;
    opacity: 1;
}

.upwell-listing-gallery-thumb img {
    width: 118px;
    height: 78px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.upwell-listing-modal-body {
    background: #fff;
}

.upwell-listing-modal-grid {
    display: grid;
    gap: 24px;
    padding: 20px 24px 12px;
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .upwell-listing-modal-grid {
        grid-template-columns: minmax(0, 1fr) 288px;
        align-items: start;
    }
}

/* Legacy: thumbnail / old modal blocks may still use these */
.upwell-listing-main-top {
    margin-bottom: 4px;
}

.upwell-listing-main-price {
    margin: 10px 0 0 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
}

.upwell-listing-main-price-secondary {
    margin: 4px 0 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: #5c5c5c;
}

.upwell-listing-main-address {
    margin: 10px 0 0 0;
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

.upwell-listing-stat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.upwell-listing-stat-chip {
    background: #f3f4f6;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    color: #1e293b;
}

.upwell-listing-section-title {
    margin: 22px 0 0 0;
    padding-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.upwell-listing-facts-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 0 0;
    font-size: 14px;
}

.upwell-listing-facts-table th,
.upwell-listing-facts-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e7e7e7;
    text-align: left;
    vertical-align: top;
}

.upwell-listing-facts-table th {
    width: 42%;
    background: #f7f7f7;
    color: #545454;
    font-weight: 600;
    font-size: 13px;
}

.upwell-listing-about {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: #444;
}

.upwell-listing-about p {
    margin: 0 0 0.75em 0;
}

.upwell-listing-external-wrap {
    margin: 16px 0 0 0;
}

.upwell-listing-external-link {
    font-weight: 700;
    color: #006aff;
    text-decoration: none;
}

.upwell-listing-external-link:hover {
    text-decoration: underline;
}

.upwell-listing-agent-card {
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background: #fff;
}

@media (min-width: 800px) {
    .upwell-listing-agent-card {
        position: sticky;
        top: 16px;
    }
}

.upwell-listing-agent-label {
    margin: 0 0 4px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #767676;
}

.upwell-listing-agent-email {
    margin: 0 0 14px 0;
    font-size: 14px;
    word-break: break-all;
}

.upwell-listing-agent-email a {
    color: #006aff;
    font-weight: 600;
}

.upwell-listing-tour-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    background: #006aff;
    border-radius: 8px;
    text-decoration: none !important;
    border: none;
    box-sizing: border-box;
    transition: background 0.15s ease, filter 0.15s ease;
}

.upwell-listing-tour-btn:hover {
    background: #0052cc;
    color: #fff !important;
    filter: brightness(1.02);
}

.upwell-listing-request-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #006aff !important;
    background: #fff;
    border: 2px solid #006aff;
    border-radius: 8px;
    text-decoration: none !important;
    box-sizing: border-box;
}

.upwell-listing-request-btn:hover {
    background: #f0f7ff;
}

.upwell-listing-sidebar-note {
    margin: 0;
    font-size: 12px;
    color: #767676;
    line-height: 1.4;
}

.upwell-listing-modal-form-wrap {
    padding: 0 24px;
}

.upwell-listing-form-section-title {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.upwell-listing-form-intro {
    margin-top: 0;
}

.upwell-listing-signup-form {
    margin-top: 0;
    padding: 16px 24px 28px;
    border-top: 1px solid #ececec;
}

.youtube-support-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    margin: 0 0 14px 0;
}

.youtube-support-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Listing photo directly under YouTube embed */
.youtube-support-listing-figure {
    margin: 0 0 14px 0;
    padding: 0;
    text-align: center;
}

.youtube-support-listing-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(113, 63, 18, 0.2);
    border: 2px solid #ca8a04;
}

/* Listing-style listing card (modal + shortcode) */
.youtube-support-listing-card {
    margin: 0 0 16px 0;
    padding: 16px 18px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.upwell-listing-status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.upwell-listing-status-for-sale {
    background: #dcfce7;
    color: #166534;
}

.upwell-listing-status-pending {
    background: #fef9c3;
    color: #854d0e;
}

.upwell-listing-status-sold {
    background: #fee2e2;
    color: #991b1b;
}

.upwell-listing-card-price {
    margin: 10px 0 0 0;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.upwell-listing-card-price-secondary {
    margin: 4px 0 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}

.upwell-listing-card-address {
    margin: 10px 0 0 0;
    font-size: 15px;
    color: #334155;
    line-height: 1.35;
}

.upwell-listing-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin: 12px 0 4px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.upwell-listing-card-facts {
    margin-top: 12px;
}

.upwell-listing-card-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: #334155;
}

.upwell-listing-card-desc p {
    margin: 0 0 0.6em 0;
}

.upwell-listing-card-ext-wrap {
    margin: 14px 0 0 0;
}

.upwell-listing-card-ext {
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.upwell-listing-card-ext:hover {
    text-decoration: underline;
}

.youtube-support-listing-info {
    margin: 0 0 16px 0;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #e7e5e4;
    background: linear-gradient(180deg, #fffbeb 0%, #fefce8 100%);
    box-shadow: 0 2px 8px rgba(113, 63, 18, 0.08);
}

.youtube-support-listing-info-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #422006;
}

.youtube-support-listing-specs {
    margin: 0;
    display: grid;
    gap: 8px 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .youtube-support-listing-specs {
        grid-template-columns: 1fr 1fr;
    }
}

.youtube-support-listing-spec {
    margin: 0;
}

.youtube-support-listing-spec dt {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #78716c;
}

.youtube-support-listing-spec dd {
    margin: 2px 0 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #1c1917;
    line-height: 1.35;
}

.youtube-support-showing-fieldset {
    margin: 0 0 16px 0;
    padding: 12px 14px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}

.youtube-support-showing-fieldset legend {
    padding: 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
}

.youtube-support-showing-hint {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #57534e;
    line-height: 1.4;
}

.youtube-support-showing-row {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .youtube-support-showing-row {
        grid-template-columns: 1fr 1fr;
    }
}

.youtube-support-book-wrap {
    margin: 0 0 16px 0;
    text-align: center;
}

.youtube-support-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #713f12 !important;
    background: linear-gradient(180deg, #fde047 0%, #facc15 100%) !important;
    border: 2px solid #ca8a04;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(202, 138, 4, 0.35);
    transition: filter 0.15s ease, transform 0.15s ease;
}

.youtube-support-book-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    color: #422006 !important;
}

.youtube-support-book-btn:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 3px;
}

.youtube-support-intro {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.youtube-support-status {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.youtube-support-status.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.youtube-support-status.is-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* General modal styles (works outside #upwellApp) */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 5px;
}

.close-btn:hover {
    color: #2563eb;
}

#upwellApp .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#upwellApp .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 5px;
}

#upwellApp .close-btn:hover {
    color: #2563eb;
}

/* Form Styles - General (works outside #upwellApp) */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2563eb;
    outline: none;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Form Styles - Scoped to #upwellApp */
#upwellApp .form-group {
    margin-bottom: 15px;
}

#upwellApp .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
}

#upwellApp .form-group input,
#upwellApp .form-group textarea,
#upwellApp .form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

#upwellApp .form-group input:focus,
#upwellApp .form-group textarea:focus,
#upwellApp .form-group select:focus {
    border-color: #2563eb;
    outline: none;
}

#upwellApp .form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

#upwellApp .form-note {
    margin: 8px 0 16px;
    font-size: 14px;
    color: #64748b;
}

/* File Upload */
#upwellApp .file-input-label {
    display: inline-block;
    padding: 10px 20px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    color: #64748b;
}

#upwellApp .file-input-label:hover {
    background: #e2e8f0;
    border-color: #2563eb;
    color: #2563eb;
}

#upwellApp .file-input-label i {
    margin-right: 8px;
}

#upwellApp input[type="file"] {
    display: none;
}

#upwellApp .image-preview {
    margin-top: 10px;
}

#upwellApp .image-preview img,
#upwellApp .image-preview video {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

/* Media Modal */
#upwellApp .media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#upwellApp .media-modal.show {
    display: flex;
}

#upwellApp .media-modal img,
#upwellApp .media-modal video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    cursor: zoom-in;
}

#upwellApp .media-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    cursor: pointer;
}

/* Toast Notifications */
#upwellApp .toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
}

#upwellApp .toast {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 10px;
    animation: upwell-slideIn 0.3s;
    border-left: 4px solid #2563eb;
}

#upwellApp .toast.success {
    border-left-color: #10b981;
}

#upwellApp .toast.error {
    border-left-color: #ef4444;
}

@keyframes upwell-slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Chat Modal */
#upwellApp .chat-modal .modal-content {
    max-width: 600px;
}

#upwellApp .chat-messages {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8fafc;
}

#upwellApp .message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
}

#upwellApp .message.user {
    background: #2563eb;
    color: #fff;
    margin-left: auto;
}

#upwellApp .message.system {
    background: #fff;
    border: 1px solid #e2e8f0;
    margin-right: auto;
}

#upwellApp .message-content {
    margin-bottom: 5px;
}

#upwellApp .message-time {
    font-size: 12px;
    opacity: 0.7;
}

#upwellApp .chat-input {
    display: flex;
    gap: 10px;
}

#upwellApp .chat-input input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

#upwellApp .chat-input input:focus {
    border-color: #2563eb;
    outline: none;
}

#upwellApp .chat-input button {
    padding: 10px 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

#upwellApp .chat-input button:hover {
    background: #1d4ed8;
}

/* Loading Spinner */
#upwellApp .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#upwellApp .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: upwell-spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes upwell-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* S3 Status */
#upwellApp .admin-section {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

#upwellApp .s3-status {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#upwellApp .s3-status.success {
    background: #d1fae5;
    color: #065f46;
}

#upwellApp .s3-status.error {
    background: #fee2e2;
    color: #991b1b;
}

#upwellApp .s3-test-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
}

#upwellApp .s3-test-message.success {
    background: #d1fae5;
    color: #065f46;
}

#upwellApp .s3-test-message.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive Design */
@media (max-width: 768px) {
    #upwellApp {
        padding: 10px;
        margin: 10px 0;
    }
    
    #upwellApp .forecast-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    #upwellApp .action-buttons {
        flex-direction: column;
    }
    
    #upwellApp .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    #upwellApp .conditions-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    #upwellApp .forecast-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    #upwellApp select {
        min-width: auto;
        width: 100%;
    }
    
    #upwellApp .report-actions {
        flex-direction: column;
    }
    
    #upwellApp .action-btn-small {
        width: 100%;
        justify-content: center;
    }
}

/* Car Dealer Modal Styles */
#upwellApp .car-dealer-modal {
    max-width: 600px;
    width: 90%;
}

#upwellApp .car-dealer-content {
    padding: 20px;
}

#upwellApp .car-image-container {
    text-align: center;
    margin-bottom: 20px;
}

#upwellApp .car-image {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 3px solid #e5e7eb;
    object-fit: cover;
}

#upwellApp .car-details h3 {
    color: #2563eb;
    margin-bottom: 10px;
    font-size: 24px;
}

#upwellApp .car-details p {
    color: #6b7280;
    margin-bottom: 15px;
    font-size: 16px;
}

#upwellApp .car-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#upwellApp .car-features li {
    padding: 8px 0;
    color: #374151;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}

#upwellApp .car-features li:last-child {
    border-bottom: none;
}

#upwellApp .car-price {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

#upwellApp .price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

#upwellApp .price {
    font-size: 32px;
    font-weight: bold;
    display: block;
}

#upwellApp .advertisement-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

#upwellApp .advertisement-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#upwellApp .advertisement-actions .btn.primary {
    background: #10b981;
    color: white;
    border: none;
}

#upwellApp .advertisement-actions .btn.primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

#upwellApp .advertisement-actions .btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #d1d5db;
}

#upwellApp .advertisement-actions .btn.secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

#upwellApp .advertisement-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

#upwellApp .advertisement-note p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive design for car dealer modal */
@media (max-width: 768px) {
    #upwellApp .car-dealer-modal {
        width: 95%;
        margin: 10px;
    }
    
    #upwellApp .advertisement-actions {
        flex-direction: column;
    }
    
    #upwellApp .advertisement-actions .btn {
        min-width: auto;
        width: 100%;
    }
    
    #upwellApp .car-price {
        padding: 15px;
    }
    
    #upwellApp .price {
        font-size: 28px;
    }
}

/* Expedia Widget Styles */
.expedia-widget-section {
    margin: 20px 0 !important;
    padding: 20px !important;
    background-color: #f5f5f5 !important;
    border-radius: 8px !important;
    min-height: 200px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.eg-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 150px !important;
    width: 100% !important;
}

/* Expedia Forecast Button Styles */
.expedia-forecast-button {
    margin: 20px 0 !important;
    text-align: center !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #00a8e1 0%, #0077b6 100%) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.3) !important;
}

.expedia-forecast-button a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 30px !important;
    background-color: white !important;
    color: #00a8e1 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.expedia-forecast-button a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    background-color: #f0f8ff !important;
}

.expedia-forecast-button a i {
    font-size: 18px !important;
}

.expedia-forecast-button a .fa-arrow-right {
    font-size: 14px !important;
}

/* Responsive styles for Expedia button */
@media (max-width: 768px) {
    .expedia-forecast-button {
        padding: 12px !important;
        margin: 15px 0 !important;
    }
    
    .expedia-forecast-button a {
        padding: 10px 20px !important;
        font-size: 14px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .expedia-forecast-button a span {
        width: 100% !important;
        text-align: center !important;
    }
}
