.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.tickets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.confirmation {
    text-align: center;
    margin-top: 40px;
}

.back-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

/* New styles for checkout process */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
}

.step {
    flex: 1;
    text-align: center;
    color: #999;
    position: relative;
    padding: 10px;
}

.step.active {
    color: #4CAF50;
    font-weight: bold;
}

.step.completed {
    color: #45a049;
}

.checkout-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.form-group input[type="checkbox"] {
    width: auto;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.order-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.success-message {
    color: #4CAF50;
    margin: 20px 0;
    font-weight: bold;
} 

.error-message {
    color: red;
    margin: 20px 0;
    font-weight: bold;
}

#contract {
    width: 100%;
    height: 160px;
    padding: 15px;
    border: 1px solid #e7ecf0;
    border-radius: 3px;
    background-color: #fafafa;
    resize: none;
    margin-bottom: 20px;
    font-family: "FoundrySterling";
    font-size: 16px;
    font-weight: 300;
    overflow-y: scroll;
    text-align: left;
    white-space: pre-line;
  }

  #stripePayments {
    margin-bottom: 20px;
  }