@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Header */
.header {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
}

/* Location selector removed - focusing only on DC */

/* Main container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mode Switcher */
.mode-switcher {
    padding: 1rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.mode-toggle {
    display: flex;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
}

.mode-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #6c757d;
}

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

.mode-button:hover:not(.active) {
    background: #f8f9fa;
    color: #495057;
}

/* Search section */
.search-section {
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    transition: all 0.2s ease;
}

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

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
    z-index: 2;
}

.search-send-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.search-send-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.search-send-button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Search Options Row (Date + Deep Search) */
.search-options-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}

/* Date picker */
.date-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.date-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    min-width: 40px;
    white-space: nowrap;
}

.date-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 120px;
}

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

/* Mobile responsiveness for search options */
@media (max-width: 768px) {
    .search-options-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .date-container {
        padding: 0.75rem;
    }
    
    .date-label {
        min-width: 35px;
    }
}

/* Research Options */
.research-options {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.research-options.hidden {
    display: none;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 1rem;
    width: 100%;
}

.research-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.research-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.research-select {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.2s ease;
}

.research-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.research-input {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.2s ease;
    width: 100%;
}

.research-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.research-input::placeholder {
    color: #adb5bd;
}

.research-field-wide {
    grid-column: 1 / -1; /* Span all columns */
}

/* Research Mode Specific Styles */
.research-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.research-intro h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.research-intro p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.research-button-container {
    margin-top: 1.5rem;
    text-align: center;
}

.research-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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

/* Research Example Items */
.research-example-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.research-example-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.research-example-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.example-details {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Mobile responsiveness for research options */
@media (max-width: 768px) {
    .research-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .research-options {
        padding: 1rem;
    }
}

/* Quick search buttons */
.quick-searches {
    margin-bottom: 2rem;
}

.quick-searches h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
}

.quick-search-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.pill-button {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pill-button:hover,
.pill-button.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Categories section */
.categories {
    margin-bottom: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.category-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.category-item .views {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Loading state */
.loading {
    text-align: center;
    padding: 3rem 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loading-text {
    color: #6c757d;
    font-size: 1rem;
}

.loading-timer {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.75rem;
    font-family: 'Monaco', 'Consolas', monospace;
}

/* Results section */
.results {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.results-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.view-toggle {
    display: flex;
    background: white;
    border-radius: 8px;
    padding: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Center view toggle when title is hidden */
.results-header:has(.results-title.hidden) {
    justify-content: center;
}

/* Fallback for browsers that don't support :has() */
.results-title.hidden + .view-toggle {
    margin: 0 auto;
}

.view-button {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-button.active {
    background: #667eea;
    color: white;
}

/* Events list */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.event-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.event-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.event-detail {
    font-size: 0.9rem;
    color: #6c757d;
}

.event-price {
    font-weight: 600;
    color: #667eea;
}

.event-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.event-link:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Map container */
.map-container {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 400px;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

/* Report View */
.report-view {
    width: 100%;
}

.report-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    flex-wrap: wrap;
}

.report-action-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.report-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

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

@media (max-width: 768px) {
    .report-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .report-action-button {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}

.report-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.report-content {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Markdown styling for reports */
.report-content h1, .report-content h2 {
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.report-content h1:first-child, .report-content h2:first-child {
    margin-top: 0;
}

.report-content h3 {
    color: #495057;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

/* Table container for horizontal scrolling */
.report-content .table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.report-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0;
}

.report-content table th,
.report-content table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.report-content table th {
    background: #667eea;
    color: white;
    font-weight: 600;
}

.report-content table tr:nth-child(even) {
    background: #f8f9fa;
}

.report-content table tr:hover {
    background: #e3f2fd;
}

.report-content ul, .report-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
    max-width: 100%;
}

.report-content li {
    margin: 0.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.report-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #6c757d;
    font-style: italic;
    background: #f8f9fa;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 0 8px 8px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.report-content code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.report-content a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.report-content strong {
    color: #333;
    font-weight: 600;
}

.report-content p {
    margin: 1rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

/* Prevent tables and pre blocks from causing horizontal scroll */
.report-content table,
.report-content pre,
.report-content code {
    max-width: 100%;
}

/* Force pre elements to wrap */
.report-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
}

/* Mobile responsiveness for report */
@media (max-width: 768px) {
    .report-content {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .report-content table {
        font-size: 0.8rem;
    }
    
    .report-content table th,
    .report-content table td {
        padding: 0.5rem;
    }
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Responsive design */
/* Fix for report content overflow */
.report-content {
    contain: layout;
}

.report-content > * {
    max-width: calc(100vw - 4rem);
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
    
    .report-content > * {
        max-width: 100%;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .search-input {
        font-size: 1.1rem;
    }
    
    .quick-search-pills {
        justify-content: center;
    }
    
    .category-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
    }
    
    .map-container {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
    
    .results-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Weekly Guide Styles */
.weekly-guide-section {
    padding: 2rem 0;
}

.guide-header {
    text-align: center;
    margin-bottom: 2rem;
}

.guide-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.guide-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Persona Grid */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.persona-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.persona-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.persona-card.active {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.persona-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.persona-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: #333;
}

.persona-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Day Selection */
.day-selection {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.back-to-personas,
.back-to-days {
    background: none;
    border: none;
    color: #667eea;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    transition: opacity 0.2s;
}

.back-to-personas:hover,
.back-to-days:hover {
    opacity: 0.7;
}

.selected-persona-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.week-header {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    padding: 1rem 0 0.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.week-header:first-child {
    margin-top: 0;
    border-top: none;
}

.day-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.day-card:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

.day-card.today {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #667eea;
}

.day-card.past {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
}

.day-card.past:hover {
    transform: none;
    border-color: transparent;
    background: #f1f5f9;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.day-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Guide Content */
.guide-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.guide-day-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-event-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.guide-event-card:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.guide-event-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.guide-event-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
    min-width: 0; /* Allow text to wrap */
}

.guide-event-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guide-event-details {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.guide-event-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.guide-event-description {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

.guide-event-name a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #667eea;
    transition: all 0.2s ease;
}

.guide-event-name a:hover {
    color: #667eea;
    border-bottom-style: solid;
}

.guide-recommendations {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.guide-recommendations p {
    margin: 0;
    color: #4a5568;
    font-style: italic;
}

/* Responsive adjustments for Weekly Guide */
@media (max-width: 640px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .days-grid {
        grid-template-columns: 1fr;
    }
    
    .week-header {
        font-size: 1.1rem;
        padding: 0.75rem 0 0.25rem 0;
    }
    
    .guide-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .guide-event-name {
        font-size: 1rem;
    }
    
    .guide-event-price {
        font-size: 0.8rem;
        max-width: none;
        align-self: flex-start;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .days-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .days-grid {
        grid-template-columns: repeat(4, 1fr);
    }
} 