* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            height: 100vh;
            overflow: hidden;
        }

        /* 顶部导航栏 */
        .navbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 0;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .navbar-brand {
            padding: 15px 25px;
            color: white;
            font-size: 20px;
            font-weight: bold;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .navbar-tabs {
            display: flex;
            flex: 1;
        }

        .navbar-tab {
            padding: 18px 30px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            background: none;
            font-size: 15px;
            font-weight: 500;
            position: relative;
        }

        .navbar-tab:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .navbar-tab.active {
            color: white;
            background: rgba(255, 255, 255, 0.15);
        }

        .navbar-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: white;
        }

        /* 页面容器 */
        .page {
            display: none;
            height: calc(100vh - 55px);
        }

        .page.active {
            display: flex;
        }

        .container {
            display: flex;
            height: 100%;
            width: 100%;
        }

        /* 工作区画布 */
        .workspace {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 19px,
                rgba(0, 0, 0, 0.03) 19px,
                rgba(0, 0, 0, 0.03) 20px
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 19px,
                rgba(0, 0, 0, 0.03) 19px,
                rgba(0, 0, 0, 0.03) 20px
            );
            overflow: auto;
        }

        .canvas-wrapper {
            position: relative;
            display: inline-block;
            transition: transform 0.2s ease-out;
            transform-origin: center center;
        }

        .label-paper {
            background: white;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            transition: box-shadow 0.3s;
        }

        .label-paper:hover {
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        /* 尺寸调整控制点 */
        .resize-handle {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #4A90E2;
            border: 2px solid white;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            z-index: 100;
            opacity: 0;
            transition: opacity 0.3s, transform 0.2s;
        }

        .canvas-wrapper:hover .resize-handle {
            opacity: 1;
        }

        .resize-handle:hover {
            transform: scale(1.3);
            background: #357ABD;
        }

        .resize-handle.nw { top: -6px; left: -6px; cursor: nw-resize; }
        .resize-handle.ne { top: -6px; right: -6px; cursor: ne-resize; }
        .resize-handle.sw { bottom: -6px; left: -6px; cursor: sw-resize; }
        .resize-handle.se { bottom: -6px; right: -6px; cursor: se-resize; }

        /* 尺寸提示 */
        .size-tooltip {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .size-tooltip.show {
            opacity: 1;
        }

        /* 功能区 */
        .sidebar {
            width: 320px;
            background: white;
            box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .sidebar-header {
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .sidebar-header h2 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .sidebar-header p {
            font-size: 12px;
            opacity: 0.9;
        }

        .section {
            padding: 20px;
            border-bottom: 1px solid #e8e8e8;
        }

        .section h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
        }

        .section h3::before {
            content: '';
            width: 4px;
            height: 16px;
            background: #667eea;
            margin-right: 10px;
            border-radius: 2px;
        }

        /* 输入组 */
        .input-group {
            margin-bottom: 15px;
        }

        .input-group label {
            display: block;
            font-size: 13px;
            color: #666;
            margin-bottom: 6px;
        }

        .input-wrapper {
            flex: 1;
            position: relative;
        }

        .input-wrapper input, .input-wrapper select {
            width: 100%;
            padding: 10px 35px 10px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .input-wrapper select {
            padding-right: 12px;
        }

        .input-wrapper input:focus, .input-wrapper select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .input-wrapper input.error {
            border-color: #e74c3c;
        }

        .unit {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #999;
        }

        .error-message {
            font-size: 11px;
            color: #e74c3c;
            margin-top: 4px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        /* 按钮 */
        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 500;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #333;
            border: 1px solid #ddd;
        }

        .btn-secondary:hover {
            background: #e9ecef;
        }

        .btn-success {
            background: #28a745;
            color: white;
        }

        .btn-success:hover {
            background: #218838;
        }

        .btn-danger {
            background: #dc3545;
            color: white;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }

        .btn-danger:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* 复选框 */
        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .checkbox-wrapper label {
            font-size: 13px;
            color: #666;
            cursor: pointer;
            margin: 0;
        }

        /* 文本框 */
        .text-box {
            position: absolute;
            border: 2px dashed transparent;
            cursor: move;
            min-width: 50px;
            min-height: 30px;
            transition: border 0.2s;
        }

        .text-box.selected {
            border: 2px dashed #4A90E2;
            background: rgba(74, 144, 226, 0.05);
        }

        .text-box.field-bound {
            border-color: #28a745;
        }

        .text-box.field-bound.selected {
            border-color: #28a745;
            background: rgba(40, 167, 69, 0.05);
        }

        .text-box:hover {
            border-color: #4A90E2;
        }

        .text-box-content {
            width: 100%;
            height: 100%;
            padding: 5px;
            word-wrap: break-word;
            overflow: hidden;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .text-box.editing .text-box-content {
            pointer-events: auto;
        }

        .text-box textarea {
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            resize: none;
            padding: 5px;
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            background: transparent;
            display: none;
            overflow: hidden;
            text-align: center;
            box-sizing: border-box;
            pointer-events: none;
        }

        .text-box.editing textarea {
            display: block;
            pointer-events: auto;
        }

        .text-box.editing .text-box-content {
            display: none;
        }

        /* 字段标签 */
        .field-badge {
            position: absolute;
            top: -8px;
            left: 5px;
            background: #28a745;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 3px;
            display: none;
            z-index: 10;
            pointer-events: none;
        }

        .text-box.field-bound .field-badge {
            display: block;
        }

        /* 文本框控制点 */
        .text-box-handle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #4A90E2;
            border: 1px solid white;
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            display: none;
        }

        .text-box.selected .text-box-handle {
            display: block;
        }

        .text-box-handle.n { top: -4px; left: 50%; transform: translateX(-50%); cursor: n-resize; }
        .text-box-handle.s { bottom: -4px; left: 50%; transform: translateX(-50%); cursor: s-resize; }
        .text-box-handle.w { top: 50%; left: -4px; transform: translateY(-50%); cursor: w-resize; }
        .text-box-handle.e { top: 50%; right: -4px; transform: translateY(-50%); cursor: e-resize; }
        .text-box-handle.nw { top: -4px; left: -4px; cursor: nw-resize; }
        .text-box-handle.ne { top: -4px; right: -4px; cursor: ne-resize; }
        .text-box-handle.sw { bottom: -4px; left: -4px; cursor: sw-resize; }
        .text-box-handle.se { bottom: -4px; right: -4px; cursor: se-resize; }

        /* 文本格式工具栏 */
        .text-toolbar {
            position: absolute;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 1000;
            gap: 8px;
            flex-wrap: wrap;
        }

        .text-toolbar.show {
            display: flex;
        }

        .toolbar-group {
            display: flex;
            gap: 4px;
            align-items: center;
            padding: 0 6px;
            border-right: 1px solid #e8e8e8;
        }

        .toolbar-group:last-child {
            border-right: none;
        }

        .toolbar-btn {
            width: 32px;
            height: 32px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            font-size: 14px;
        }

        .toolbar-btn:hover {
            background: #f5f5f5;
            border-color: #999;
        }

        .toolbar-btn.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }

        .toolbar-select {
            padding: 6px 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            background: white;
        }

        .toolbar-select:focus {
            outline: none;
            border-color: #667eea;
        }

        .toolbar-input {
            padding: 6px 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 12px;
            background: white;
            text-align: center;
        }

        .toolbar-input:focus {
            outline: none;
            border-color: #667eea;
        }

        .toolbar-color {
            width: 32px;
            height: 32px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
        }

        /* 工具栏删除按钮 */
        .toolbar-delete-btn {
            padding: 6px 12px;
            background: #e74c3c;
            color: white;
            border: 1px solid #e74c3c;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .toolbar-delete-btn:hover {
            background: #c0392b;
            border-color: #c0392b;
            transform: translateY(-1px);
        }

        /* 缩放控制器 */
        .zoom-control {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 100;
        }

        .zoom-control label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .zoom-buttons {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .zoom-btn {
            width: 32px;
            height: 32px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: #667eea;
            transition: all 0.2s;
        }

        .zoom-btn:hover {
            background: #667eea;
            color: white;
            border-color: #667eea;
            transform: scale(1.1);
        }

        .zoom-btn:active {
            transform: scale(0.95);
        }

        .zoom-slider {
            width: 150px;
            height: 6px;
            -webkit-appearance: none;
            appearance: none;
            background: #e0e0e0;
            border-radius: 3px;
            outline: none;
        }

        .zoom-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            background: #667eea;
            cursor: pointer;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.2s;
        }

        .zoom-slider::-webkit-slider-thumb:hover {
            background: #5a7dd9;
            transform: scale(1.2);
        }

        .zoom-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            background: #667eea;
            cursor: pointer;
            border-radius: 50%;
            border: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.2s;
        }

        .zoom-slider::-moz-range-thumb:hover {
            background: #5a7dd9;
            transform: scale(1.2);
        }

        .zoom-value {
            font-size: 14px;
            color: #333;
            font-weight: 600;
            min-width: 50px;
            text-align: center;
        }

        /* 报名管理页面 */
        .registration-page {
            width: 100%;
            padding: 30px;
            overflow-y: auto;
        }

        .upload-area {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            border: 3px dashed #e0e0e0;
            transition: all 0.3s ease;
            position: relative;
        }

        .upload-area.drag-over {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .upload-area.drag-over::before {
            content: '📥 松开鼠标导入文件';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            font-weight: bold;
            color: #667eea;
            background: white;
            padding: 20px 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 10;
            pointer-events: none;
        }

        .upload-area h2 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }

        .upload-area p {
            color: #666;
            margin-bottom: 25px;
        }

        .file-input-wrapper {
            position: relative;
            display: inline-block;
        }

        .file-input-wrapper input[type="file"] {
            display: none;
        }

        .file-input-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 8px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .file-input-label:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .data-table-container {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .table-header h2 {
            font-size: 20px;
            color: #333;
        }

        .table-actions {
            display: flex;
            gap: 10px;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .data-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .data-table th {
            padding: 12px 15px;
            text-align: left;
            font-weight: 500;
            font-size: 14px;
            white-space: nowrap;
            min-width: 100px;
        }

        .data-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e8e8e8;
            font-size: 14px;
            max-width: 200px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            position: relative;
            transition: all 0.2s ease;
        }

        .data-table td:hover {
            overflow: visible;
            white-space: normal;
            word-break: break-word;
            background: #f8f9fa;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .data-table td.actions-cell {
            max-width: none;
            overflow: visible;
            white-space: nowrap;
        }

        .data-table td.actions-cell:hover {
            background: transparent;
            box-shadow: none;
        }

        .data-table tbody tr:hover {
            background: #f8f9fa;
        }

        .data-table tbody tr:last-child td {
            border-bottom: none;
        }

        .print-btn-small {
            padding: 6px 14px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            margin-right: 5px;
        }

        .print-btn-small:hover {
            background: #5a7dd9;
            transform: translateY(-1px);
        }

        .edit-btn-small {
            padding: 6px 14px;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            margin-right: 5px;
        }

        .edit-btn-small:hover {
            background: #218838;
            transform: translateY(-1px);
        }

        .delete-btn-small {
            padding: 6px 14px;
            background: #dc3545;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
        }

        .delete-btn-small:hover {
            background: #c82333;
            transform: translateY(-1px);
        }

        .checkin-btn-small {
            padding: 6px 14px;
            background: #17a2b8;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            margin-right: 5px;
        }

        .checkin-btn-small:hover {
            background: #138496;
            transform: translateY(-1px);
        }

        .checkin-btn-small.checked {
            background: #6c757d;
        }

        .checkin-btn-small.checked:hover {
            background: #5a6268;
        }

        .search-bar {
            margin-bottom: 15px;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .search-field-select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            background: white;
            cursor: pointer;
            min-width: 150px;
            transition: all 0.3s;
        }

        .search-field-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .search-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal-form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .modal-form-group label {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        .modal-form-group input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

        .modal-form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .empty-state-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .empty-state h3 {
            font-size: 18px;
            color: #666;
            margin-bottom: 10px;
        }

        .empty-state p {
            font-size: 14px;
            color: #999;
        }

        /* 模态框 */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            padding: 0;
            width: auto;
            min-width: 500px;
            max-width: 600px;
            max-height: 90vh;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
            display: flex;
            flex-direction: column;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid #e8e8e8;
            flex-shrink: 0;
        }

        .modal-header h2 {
            font-size: 22px;
            color: #333;
            margin: 0;
        }

        .modal-body {
            padding: 25px 30px;
            overflow-y: auto;
            flex: 1;
            min-height: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .modal-footer {
            padding: 20px 30px;
            border-top: 1px solid #e8e8e8;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            flex-shrink: 0;
            background: #f8f9fa;
        }

        .preview-label {
            border: 1px solid #ddd;
            display: inline-block;
            margin: 0 auto;
        }
        
        .modal-form {
            width: 100%;
        }

        /* 添加文本框模式 */
        .workspace.adding-text {
            cursor: crosshair;
        }

        /* 快捷操作提示 */
        .shortcuts {
            padding: 15px 20px;
            background: #f8f9fa;
            font-size: 12px;
            color: #666;
        }

        .shortcuts div {
            margin-bottom: 5px;
        }

        .shortcuts kbd {
            padding: 2px 6px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-family: monospace;
            font-size: 11px;
        }

        /* 打印样式 */
        @media print {
            body * {
                visibility: hidden;
            }
            .print-area,
            .print-area * {
                visibility: visible;
            }
            .print-area {
                position: absolute;
                left: 0;
                top: 0;
            }
            .text-box {
                border: none !important;
                background: none !important;
            }
            .text-box-handle,
            .resize-handle,
            .field-badge {
                display: none !important;
            }
        }