.concertlist {
    width: 100%;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.8); /* Black transparent background */
}

.concert {
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0); /* Black transparent background */
    border-bottom: 1px dotted white;  
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color: white;
}
.concertlist .concert:last-child {
    border-bottom: none;
}
.concert h2 {
    margin-top: 0;
    font-size: 20px;
    text-align: center; /* Centering the title */
    text-decoration: none;
}

.concert h2 a {
    color: inherit;
    text-decoration: none;
}

.concert h2 a:hover {
    color: #007bff; /* Change the color as per your requirement */
}

.concert-date {
    display: block;
    text-align: center;
    font-size: 16px;
}


.concert .location {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
    flex-direction: column; /* to make the image and address stack */
}

.concert .location img {
    width: 30px;  /* Bigger image */
    height: 30px; /* Bigger image */
    margin-right: 10px;
}


.concert .description {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}
