/* Ticket Cards */
.ticket-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Keep ticket header fixed */
.ticket-card .d-ticket {
    flex-shrink: 0;
}

/* Allow ticket content to fill available space */
.ticket-card > .relative {
    flex: 1;
}

/* Keep buttons aligned */
.ticket-card > .btn-main {
    margin-top: auto;
}

/* Equal height ticket cards */
.ticket-card {
    display: flex;
    flex-direction: column;
}