        .create-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .create-header {
            margin-bottom: 2rem;
        }

        .create-header h1 {
            font-size: 1.75rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .create-header p {
            color: var(--text-secondary);
        }

        /* Progress Steps */
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

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

        .progress-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 16px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--border-color);
            z-index: 0;
        }

        .progress-step.completed:not(:last-child)::after {
            background: var(--primary-color);
        }

        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--border-color);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
            position: relative;
            z-index: 1;
            transition: all 0.2s;
        }

        .progress-step.active .step-circle {
            background: var(--primary-color);
            color: white;
        }

        .progress-step.completed .step-circle {
            background: var(--success-color);
            color: white;
        }

        .step-label {
            margin-top: 0.5rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-align: center;
        }

        .progress-step.active .step-label {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Form Card */
        .form-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .form-card h2 {
            font-size: 1.25rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .form-card .subtitle {
            color: var(--text-secondary);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

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

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .form-group label .required {
            color: var(--error-color);
        }

        .form-group .help-text {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: white;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #999;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-select {
            cursor: pointer;
        }

        /* Grade Level and Subject Tag styles are in resource-form.css */

        /* Category Selection */
        .category-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .category-chip {
            padding: 0.5rem 1rem;
            background: var(--background);
            border: 2px solid var(--border-color);
            border-radius: 2rem;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .category-chip:hover {
            border-color: var(--primary-light);
        }

        .category-chip.selected {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        /* Standards Search */
        .standards-search {
            position: relative;
        }

        .standards-search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            max-height: 300px;
            overflow-y: auto;
            z-index: 100;
            display: none;
        }

        .standards-search-results.visible {
            display: block;
        }

        .search-result-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            border-bottom: 1px solid var(--border-color);
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover {
            background: var(--background-warm);
        }

        .search-result-item .notation {
            font-weight: 600;
            color: var(--primary-color);
        }

        .search-result-item .description {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        /* Selected Standards */
        .selected-standards {
            margin-top: 1rem;
        }

        .selected-standard {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            background: var(--background);
            border-radius: var(--radius-md);
            margin-bottom: 0.5rem;
        }

        .selected-standard .info {
            flex: 1;
        }

        .selected-standard .notation {
            font-weight: 600;
            color: var(--primary-color);
        }

        .selected-standard .description {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .selected-standard .remove-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0.25rem;
            font-size: 1.25rem;
            line-height: 1;
        }

        .selected-standard .remove-btn:hover {
            color: var(--error-color);
        }

        /* Pricing Section */
        .pricing-options {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pricing-option {
            flex: 1;
            padding: 1.25rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }

        .pricing-option:hover {
            border-color: var(--primary-light);
        }

        .pricing-option.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .pricing-option h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .pricing-option p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .price-input-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .price-input-group .currency {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .price-input-group input {
            width: 120px;
        }

        /* Visibility Options */
        .visibility-option {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 0.75rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .visibility-option:hover {
            border-color: var(--primary-light);
        }

        .visibility-option.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .visibility-option input[type="radio"] {
            margin-top: 0.25rem;
        }

        .visibility-option .option-info h4 {
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
        }

        .visibility-option .option-info p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Form Actions */
        .form-actions {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
            margin-top: 1.5rem;
        }

        .form-actions .btn {
            min-width: 120px;
        }

        /* Login Required */
        .login-required {
            text-align: center;
            padding: 4rem 2rem;
        }

        .login-required h2 {
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .login-required p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        /* Action Cards (Step 3) */
        .action-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .action-card {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .action-card:hover {
            border-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .action-card.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .action-card.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .action-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .action-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .action-card > p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .action-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            text-align: left;
        }

        .action-features li {
            font-size: 0.8rem;
            color: var(--text-secondary);
            padding: 0.25rem 0;
            padding-left: 1.25rem;
            position: relative;
        }

        .action-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
        }

        .action-btn {
            width: 100%;
        }

        .price-input-inline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .price-input-inline .currency {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .price-input-inline input {
            width: 80px;
            text-align: center;
            padding: 0.5rem;
        }

        @media (max-width: 768px) {
            .action-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Preview Panel */
        .preview-panel {
            background: var(--background);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        .preview-panel h3 {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .preview-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 1.25rem;
            border: 1px solid var(--border-color);
        }

        .preview-card .preview-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .preview-card .preview-description {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .preview-card .preview-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .preview-card .preview-price {
            font-weight: 600;
            color: var(--success-color);
        }

        /* Toast and Loading styles are in resource-form.css */

        /* Responsive */
        @media (max-width: 768px) {
            .create-container {
                padding: 1rem;
            }

            .form-card {
                padding: 1.5rem;
            }

            .pricing-options {
                flex-direction: column;
            }

            .form-actions {
                flex-direction: column;
            }

            .form-actions .btn {
                width: 100%;
            }

            .progress-steps {
                padding: 0;
            }

            .step-label {
                display: none;
            }
        }

        /* Textarea Header with Fullscreen Button */
        .textarea-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .textarea-header label {
            margin-bottom: 0;
        }

        .fullscreen-btn {
            background: none;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 0.375rem 0.5rem;
            cursor: pointer;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.75rem;
            transition: all 0.2s;
        }

        .fullscreen-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: var(--background-warm);
        }

        /* Fullscreen Modal */
        .fullscreen-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 1000;
            display: none;
            flex-direction: column;
        }

        .fullscreen-modal.active {
            display: flex;
        }

        .fullscreen-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
            background: var(--background);
        }

        .fullscreen-title {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .fullscreen-close {
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-close:hover {
            background: var(--background-warm);
            color: var(--text-primary);
        }

        .fullscreen-textarea {
            flex: 1;
            width: 100%;
            border: none;
            padding: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            resize: none;
            font-family: inherit;
        }

        .fullscreen-textarea:focus {
            outline: none;
        }

        .fullscreen-textarea::placeholder {
            color: #999;
        }

        .fullscreen-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-top: 1px solid var(--border-color);
            background: var(--background);
        }

        .fullscreen-actions {
            display: flex;
            gap: 0.75rem;
        }

        /* Marketplace Details Section */
        .marketplace-details {
            background: var(--background);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .marketplace-details h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 0.25rem 0;
        }

        .marketplace-details .form-group {
            margin-bottom: 1rem;
        }

        .marketplace-details .form-group:last-child {
            margin-bottom: 0;
        }

        .marketplace-details .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
