/* Ticket Purchase Form */
.ticket-purchase-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 20px auto;
}

.ticket-purchase-form h3 {
    margin: 0 0 20px;
    text-align: center;
}

.ticket-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    color: white;
}

.ticket-price {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.per-ticket {
    font-size: 14px;
    opacity: 0.9;
}

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

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

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.btn-buy-ticket {
    width: 100%;
    padding: 16px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy-ticket:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.btn-buy-ticket:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#ticket-message {
    margin-top: 20px;
}

.success-message {
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
    margin-bottom: 15px;
}

.error-message {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    color: #721c24;
}

.tickets-purchased {
    margin-top: 15px;
}

.ticket-download {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-download a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

/* My Tickets List */
.my-tickets-list h3 {
    margin-bottom: 20px;
}

.ticket-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.ticket-card h4 {
    margin: 0 0 12px;
}

.ticket-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ticket-details span {
    font-size: 14px;
    color: #666;
}

.btn-download-ticket {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-download-ticket:hover {
    background: #2980b9;
    transform: translateX(3px);
}

/* Event Ticketing Section */
.event-ticketing-section {
    margin: 30px 0;
}

.availability-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.total-price {
    text-align: center;
    font-size: 18px;
    margin: 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tickets-sold-out, .tickets-login-required {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
}

.tickets-sold-out {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.tickets-sold-out h3, .tickets-login-required h3 {
    margin: 0 0 10px;
}
