/* Container and General Text */
#tour-schedule {
    color: #e0e0e0; /* Light gray text for general readability */
    background-color: transparent; /* Allows your site's black background to show through */
}

#tour-schedule h2, 
#tour-schedule h3 {
    color: #ffffff;
    border-bottom: 2px solid #444; /* Darker line for the header */
    padding-bottom: 8px;
    margin-top: 40px;
}

/* Individual Show Item */
#tour-schedule .show-item {
    padding: 25px 0;
    border-bottom: 1px solid #333; /* Subdued line between shows */
}

/* Highlight for the Next Show */
#tour-schedule .highlight-row {
    background-color:none; /* Set to differentiate from black */
    padding: 25px;
    margin: 0 -20px;
    border-left: 0px solid #ffcc00; /* Bright gold accent */
    border-bottom: 1px solid #444;
}

/* Typography Details */
#tour-schedule .show-date { 
    font-weight: bold; 
    font-size: 1.3rem; 
    color: #ffffff; /* Bright white for the date */
}

#tour-schedule .show-time { 
    color: #bbb; /* Slightly dimmer for the time */
    font-size: 1rem;
}

#tour-schedule .show-venue { 
    font-weight: bold; 
    font-size: 1.15rem; 
    color: #ffcc00; /* Gold color to make the venue pop */
    margin-top: 8px; 
}

#tour-schedule .show-address { 
    color: #999; 
    font-style: italic; 
    font-size: 0.95rem;
}

#tour-schedule .show-description { 
    margin: 12px 0; 
    display: block; 
    color: #ccc;
}

#tour-schedule .show-link { 
    margin-top: 12px; 
    display: inline-block; 
}

/* Badge and Buttons */
#tour-schedule .next-badge {
    background: #ffcc00;
    color: #000;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 10px;
}

#tour-schedule #toggle-past-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 30px;
    transition: background 0.2s;
}

#tour-schedule #toggle-past-btn:hover {
    background-color: #ffcc00;
}

#tour-schedule a.ticket-link {
    color: #ff4444; /* Vibrant red for the call to action */
    font-weight: bold;
    text-decoration: underline;
}

#tour-schedule a.ticket-link:hover {
    color: #ff6666;
}