@font-face {
  font-family: 'BaskervilleCustom';
  src: url(../fonts/Baskerville.ttc) format('truetype-collection');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'AmaticBold';
    src: url('../fonts/Amatic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}



#tickets {
    text-align: center; /* alles zentrieren */
    max-width: 800px;
    margin: 0 auto; /* mittig auf der Seite */
    padding: 2rem 1rem;
    color: #4F0E05;
    font-family: 'BaskervilleCustom', serif;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.ticket-table-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.ticket-table {
    border-collapse: collapse;
    min-width: 300px;
    font-family: 'BaskervilleCustom', serif;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ticket-table td {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'AmaticBold', cursive;
    font-size: 1.3rem;
}

.ticket-table th {
    background: #304D02;
    color: #FBCD89;
    font-weight: bold;
    font-family: 'BaskervilleCustom', serif;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.3rem;
}

.ticket-table tr:last-child td {
    border-bottom: none;
}

/* Trennelement */
.section-divider {
    width: 60px;
    height: 3px;
    background-color: #304D02;
    border: none;
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}