.radiance-doc-gen-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.radiance-doc-gen-header {
    text-align: center;
    margin-bottom: 30px;
}

.radiance-doc-gen-steps {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.radiance-doc-gen-steps .step {
    padding: 10px 20px;
    margin: 0 10px;
    background: #f0f0f0;
    border-radius: 5px;
    position: relative;
}

.radiance-doc-gen-steps .step.active {
    background: #007cba;
    color: white;
}

.radiance-doc-gen-steps .step.completed {
    background: #46b450;
    color: white;
}

.radiance-doc-gen-steps .step.completed::after {
    content: '✓';
    position: absolute;
    right: 5px;
    top: 5px;
}

.document-selection .document-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.document-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.document-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.document-card h4 {
    margin: 0 0 10px 0;
}

.document-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #007cba;
    margin: 10px 0;
}

.document-card .button {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.document-form .form-field {
    margin-bottom: 20px;
}

.document-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.document-form input,
.document-form textarea,
.document-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.document-form .required {
    color: red;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.button {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.button.primary {
    background: #007cba;
    color: white;
}

.button.secondary {
    background: #f0f0f0;
    color: #333;
}

.document-preview .preview-container {
    border: 1px solid #ddd;
    margin: 20px 0;
    max-height: 600px;
    overflow-y: auto;
}

.document-preview iframe {
    width: 100%;
    border: none;
}

.payment-section {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.payment-summary {
    margin-bottom: 30px;
}

.payment-summary p {
    margin: 10px 0;
}