/* Add these new styles */

#dynamic-qr-container {
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#basicon-qr-canvas {
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-display {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
}

.price-display p {
    margin: 5px 0;
}

.accompanying-persons {
    margin: 25px 0;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
    border: 1px solid #c2e0ff;
}

.accompanying-person {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #c2e0ff;
}

.accompanying-person:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Existing styles */
.basicon-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* ... rest of your existing styles ... */
/* Registration Form Styles */
.basicon-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.basicon-registration-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.basicon-registration-form .form-header .logo {
    height: 80px;
    margin-bottom: 15px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.file-upload-group {
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px dashed #ddd;
}

.payment-section {
    margin: 30px 0;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
    border: 1px solid #c2e0ff;
}

.qr-code {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code img {
    max-width: 200px;
    margin: 0 auto 15px;
}

.payment-upload {
    margin-top: 20px;
}

.submit-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0052a3;
}