
        body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #1a1a1a;
            color: #ffffff;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 20px;
        }
        
        .search-question {
            background: #333;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 18px;
            margin-bottom: 30px;
            border-left: 4px solid #ff6b35;
        }
        
        .gig-card {
            background: #2a2a2a;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        .gig-card:hover {
            border-color: #ff6b35;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .band-name {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }
        
        .venue {
            font-size: 18px;
            color: #cccccc;
            margin-bottom: 15px;
        }
        
        .gig-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .detail-item {
            background: #1a1a1a;
            padding: 10px;
            border-radius: 5px;
            border-left: 3px solid #ff6b35;
        }
        
        .detail-label {
            font-weight: bold;
            color: #ff6b35;
            font-size: 12px;
            text-transform: uppercase;
        }
        
        .detail-value {
            font-size: 16px;
            margin-top: 5px;
        }
        
        .ticket-button {
            background: #ff6b35;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 10px;
        }
        
        .ticket-button:hover {
            background: #e55a2b;
        }
        
        .coming-soon {
            background: #4a4a4a;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 40px;
            border: 2px dashed #666;
        }
        /* Search functionality styles */
.search-section {
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.search-input::placeholder {
    color: #888;
    font-style: italic;
}

.clear-button {
    padding: 15px 25px;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.clear-button:hover {
    background-color: #ff6b35;
    transform: translateY(-1px);
}

.search-results {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    color: #888;
}

.search-results span {
    background: #333;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Hidden gig card animation */
.gig-card.hidden {
    display: none !important;
}

.gig-card.fade-out {
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

/* Search highlight effect */
.search-highlight {
    background-color: #ff6b35;
    color: #000;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}
/* Enhanced search and filter styles */
.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 20px 0;
    align-items: center;
}

.filter-select {
    padding: 12px 15px;
    font-size: 14px;
    border: 2px solid #444;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: #ffffff;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: #ff6b35;
}

.filter-select option {
    background-color: #2a2a2a;
    color: #ffffff;
}

/* Enhanced gig card for multi-band events */
.gig-card.multi-band {
    border-left: 4px solid #00ff88;
}

.supporting-bands {
    margin-top: 10px;
    font-size: 14px;
    color: #bbb;
}

.supporting-bands .label {
    color: #ff6b35;
    font-weight: bold;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.event-tag {
    background: #444;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.event-tag.multi-band-night {
    background: #00ff88;
    color: #000;
}

.event-tag.sold-out {
    background: #ff4444;
}

.event-tag.international-act {
    background: #ff6b35;
}

/* Improved color scheme - addressing your UX feedback */
body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.gig-card {
    background: linear-gradient(145deg, #2a2a3e, #1e1e2e);
    border: 1px solid #3a3a5e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.gig-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.2);
}
.coming-soon {
    order: 999; /* Ensures it appears last in flex containers */
    margin-top: 40px; /* Extra space from gig cards */
}

/* If needed, make the body a flex container */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Add gap between supporting bands and gig details */
.supporting-bands {
    margin-top: 10px;
    margin-bottom: 15px; /* Added: gap before details */
    font-size: 14px;
    color: #bbb;
}

/* Ensure tags are properly aligned */
.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    align-items: center; /* Ensure same baseline */
}

.event-tag {
    background: #444;
    color: #fff;
    padding: 6px 12px; /* Slightly more padding for consistency */
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap; /* Prevent text wrapping */
    line-height: 1; /* Consistent line height */
}

/* Updated tag colors for your new categories */
.event-tag.multi-band-night {
    background: #00ff88;
    color: #000;
}

.event-tag.outdoor-event {
    background: #4CAF50;
    color: #fff;
}

.event-tag.all-day-event {
    background: #FF9800;
    color: #fff;
}

.event-tag.international-act {
    background: #ff6b35;
    color: #fff;
}

.event-tag.dj-night {
    background: #9C27B0;
    color: #fff;
}

.event-tag.indoor-event {
    background: #2196F3;
    color: #fff;
}
/* Enhanced gig card styling for title/headliner separation */
.event-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1.2;
}

.headliner {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Genre badges styling - THIS WAS MISSING */
.genres-section {
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.genre-badge {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.genre-badge:nth-child(even) {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.genre-badge:nth-child(3n) {
    background: linear-gradient(45deg, #2196F3, #1976D2);
}

/* Improved card hierarchy */
.gig-card .venue {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.supporting-bands {
    margin-bottom: 12px;
}

/* Better visual separation */
.gig-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #444;
}
.search-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.submit-gig-link {
    background: #ff6b35;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-gig-link:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.gig-description {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #3a3a5e;
    font-size: 0.85em;
    color: #aaa;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
