/* Venue list container */
.venue-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* -------------------- Dark mode -------------------- */
body.dark-mode .venue-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

body.dark-mode .venue-card h2 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 0.5rem;
}

body.dark-mode .venue-card a {
    color: #00bfff;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.75rem;
}

body.dark-mode .venue-card a:hover {
    text-decoration: underline;
}

/* -------------------- Light mode -------------------- */
body.light-mode .venue-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

body.light-mode .venue-card h2 {
    margin-top: 0;
    color: #111;
    margin-bottom: 0.5rem;
}

body.light-mode .venue-card a {
    color: #0077cc;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.75rem;
}

body.light-mode .venue-card a:hover {
    text-decoration: underline;
}

/* Feasibility text color coding (same both modes) */
.feasible {
    color: #28a745;
    font-weight: bold;
}

.potentially-feasible {
    color: #fd7e14;
    font-weight: bold;
}

.not-feasible {
    color: #dc3545;
    font-weight: bold;
}

.pbq {
    color: #FF79C6;
    font-weight: bold;
}
