/* General Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f9;
}

main {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h1 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #121268;
    display: inline-block;
}

/* Video Grid System */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tocX {
	list-style: none; 
    display: flex; 
    flex-wrap: wrap; /* Ensures it looks good on mobile if items wrap */
    gap: 20px;
    padding: 0;
    align-items: center;
}
.toc ul {
    list-style: none; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px;
    padding: 0;
    margin: 0;
}

.toc li {
    display: flex;
    align-items: center;
}

/* Add the vertical bar after every item EXCEPT the last one */
.toc li:not(:last-child)::after {
    content: "|";
    margin-left: 20px; /* Matches your gap */
    color: #ccc;      /* Light gray so it's not too distracting */
    font-weight: normal;
}

/* Individual Video Card */
.video-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
    color: #111;
}

.video-meta {
    font-size: 0.85rem;
    color: #666;
}

/* Reset the default browser styling */
address {
    font-style: normal; /* Removes the default italics */
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

/* Add some structure if you used the Schema markup */
.venue-address {
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #121268; /* YouTube/Music theme accent */
    border-radius: 4px;
    display: inline-block; /* Keeps the background from stretching full width */
}

/* Style the neighborhood and coordinates differently */
.neighborhood {
    font-weight: 600;
    color: #111;
    display: block;
    margin-bottom: 5px;
}

.coordinates {
    font-family: monospace; /* Makes numbers easier to read */
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}
.Xconcert-metadata {
    line-height: 1.4; /* Improves readability while keeping rows tight */
    margin-top: 15px;
}
.Xconcert-metadata strong {
    color: #000;
    display: inline-block;
    width: 200px;     /* Aligns the colons vertically for a clean "table" look */
}

.player-header {
    margin: 0 0 15px 0;    /* Only bottom margin to separate from the player */
    text-align: center;
}

.centered-header-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 4px 4px 0 0; /* Rounds only the top corners */
}