/* src/assets/styles.css */
body {
    font-family: system-ui, Arial, sans-serif;
    margin: 16px;
}

header h1 {
    margin: 0
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
    margin-top: 16px
}

.ticket {
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #ddd
}

.ticket .num {
    display: block;
    font-weight: 700;
    font-size: 18px
}

.ticket.sold {
    background: #ffecec;
    border-color: #ffbdbd;
    color: #7a0b0b;
    font-size: 10px;
}

.ticket.available {
    background: #e8fff0;
    border-color: #bfecc8;
    color: #0b5f2f;
    font-size: 10px;
}

.flash {
    background: #fffae6;
    padding: 8px;
    border: 1px solid #ffd58a;
    margin-bottom: 12px
}

table {
    width: 100%;
    border-collapse: collapse
}

table th,
table td {
    padding: 6px;
    border: 1px solid #eee;
    text-align: left
}

button {
    padding: 6px 8px;
    border-radius: 6px
}