.generator-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shared-import-upload-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #3b82f6;
    background: #f6f8fa;
}

.file-upload-area input {
    display: none;
}

.uploaded-files-list {
    margin-top: 20px;
}

.uploaded-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f6f8fa;
    border-radius: 8px;
    margin-bottom: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.file-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    flex-shrink: 0;
}

.file-details {
    min-width: 0;
}

.file-name {
    font-weight: 600;
    color: #1f2937;
    word-break: break-word;
}

.file-size {
    font-size: 0.875rem;
    color: #6b7280;
}

.file-char-count {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}

.instructions-input {
    margin: 24px 0;
}

.instructions-input textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
}

.instructions-input textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.instructions-meta-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.instructions-meta-left {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-meta-right {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.instruction-extra-credits {
    color: #92400e;
    font-weight: 600;
}

.instruction-billing-help-btn {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.15s ease;
}
