.ticket-sales-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.ticket-hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ticket-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ticket-details {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ticket-image {
    flex: 1;
}

.ticket-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ticket-purchase {
    flex: 1;
    text-align: center;
}

.ticket-purchase h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.ticket-selector {
    margin-bottom: 1.5rem;
    text-align: left;
}

.ticket-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.ticket-selector select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
}
