.crafting-booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.crafting-booking-container h2,
.crafting-booking-container h3,
.crafting-booking-container h4 {
    font-family: 'Yusei Magic', sans-serif;
    color: #000;
    margin-bottom: 1rem;
}

.crafting-booking-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.crafting-booking-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.event-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.form-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #495057;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.primary-button {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.primary-button:hover {
    background: #1e3d6f;
}

.secondary-button {
    background: #6c757d;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.secondary-button:hover {
    background: #545b62;
}

.attendee {
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    background: white;
}

.allergy-details {
    margin-top: 0.5rem;
}

.booking-details {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.attendee-summary {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.attendee-summary:last-child {
    border-bottom: none;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.summary-actions .primary-button,
.summary-actions .secondary-button {
    flex: 1;
}

.booking-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .crafting-booking-container {
        padding: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .summary-actions {
        flex-direction: column;
    }
}