/* Canvas Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-to-tools {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #5DC7B7;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #5DC7B7;
    transition: all 0.2s;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-tools:hover {
    background: #5DC7B7;
    color: #000;
}

.need-help-btn {
    padding: 0.5rem 1.5rem;
    background: #5DC7B7;
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.need-help-btn:hover {
    background: #4db6a6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Progress Bar */
.progress-nav {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s;
    background: #e5e7eb;
    color: #6b7280;
    position: relative;
}

.step-circle.active,
.step-circle.completed {
    background: #5DC7B7;
    color: #fff;
}

.step-checkmark {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.step-circle.completed .step-checkmark {
    display: flex;
}

.step-title {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    max-width: 120px;
}

.step-circle.active + .step-title,
.step-circle.completed + .step-title {
    color: #000;
}

.progress-line {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.progress-line.completed {
    background: #5DC7B7;
}

/* Content Card */
.content-card {
    background: #fff;
    border: 2px solid #5DC7B7;
    padding: 2rem;
    min-height: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.content-header p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.help-text {
    display: block;
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #9ca3af;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #5DC7B7;
    box-shadow: 0 0 0 3px rgba(93, 199, 183, 0.3);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: #5DC7B7;
}

.radio-option.selected {
    border-color: #5DC7B7;
    background: rgba(93, 199, 183, 0.1);
}

.radio-option input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .progress-steps {
        flex-wrap: wrap;
    }
    
    .btn-group {
        flex-direction: column;
    }
}

/* Beta Banner - Add to canvas.css */

.beta-banner {
    background: linear-gradient(135deg, #5DC7B7 0%, #4db6a6 100%);
    color: #000;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    position: relative;
    animation: slideDown 0.3s ease;
}

.beta-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beta-badge {
    background: #000;
    color: #5DC7B7;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.beta-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.beta-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.beta-feedback-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.beta-feedback-btn:hover {
    background: #333;
}

.beta-dismiss {
    background: transparent;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.beta-dismiss:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hide when dismissed */
.beta-banner.dismissed {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .beta-banner {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        text-align: center;
    }
    
    .beta-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .beta-actions {
        justify-content: center;
    }
    
    .beta-dismiss {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}
.success-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.success-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-header .success-icon {
    margin: 0 auto 1rem;
    width: 64px;
    height: 64px;
}

.success-header h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000;
}

.success-header p {
    font-size: 1rem;
    color: #666;
}

/* Primary CTA Section */
.cta-primary {
    background: linear-gradient(135deg, #5DC7B7 0%, #4db6a6 100%);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.cta-primary h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #000;
}

.cta-primary p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: #000;
    line-height: 1.5;
}

.cta-primary .btn {
    background: #000;
    color: #fff;
    border-color: #000;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.cta-primary .btn:hover {
    background: #333;
    border-color: #333;
}

/* Secondary CTA Section */
.cta-secondary {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.cta-secondary .checkbox-group {
    margin-bottom: 0.75rem;
}

.cta-secondary .checkbox-group input[type="checkbox"] {
    margin-top: 0;
}

/* Tertiary CTA Section */
.cta-tertiary {
    text-align: center;
    padding: 1rem;
}

.cta-tertiary a {
    text-decoration: none;
    transition: opacity 0.2s;
}

.cta-tertiary a:hover {
    opacity: 0.8;
    text-decoration: underline;
}