.sitewide-message {
    /* Customize appearance */
    background-color: #ffc107; /* Example: yellow */
    color: #333;
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #e0a800;
    margin-bottom: 15px; /* Space below message */
    border-radius: 0; /* Optional: remove rounding if using Bootstrap alert */
    /* Add other styles as needed */
}
/* Style links within the message if needed */
.sitewide-message a {
    color: #0056b3;
    font-weight: bold;
}
.sitewide-message a:hover {
    color: #003d80;
}

/* In your morricone.css or the <style> block in index.php */
.tickets-table {
  width: 100%; /* Make table take full width of its container */
  max-width: 800px; /* Max width */
  margin: 0 auto; /* Center the table */
  border-collapse: collapse; /* Optional: for cleaner borders */
}

.tickets-table td {
  border-color: #333 !important; /* Ensure border color consistency */
  vertical-align: middle !important;
  padding: 10px 8px; /* Consistent padding, adjust as needed */
}

/* Specific column alignments if not using inline styles */
.tickets-table td:nth-child(1), /* Thumbnail */
.tickets-table td:nth-child(4) { /* Tickets */
  text-align: center;
}

.tickets-table td:nth-child(2), /* Date */
.tickets-table td:nth-child(3) { /* Venue/Location */
  text-align: left;
}

.tickets-table td:first-child { /* Thumbnail column */
  width: 80px; /* Fixed width for thumbnail */
  padding-right: 10px;
}

.tickets-table td:last-child { /* Tickets button column */
  width: 100px; /* Adjust as needed */
  text-align: right;
}