/* Базові скидання */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
}

/* Панель інструментів */
.controls-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: move;
    user-select: none;
}

.controls-panel button {
    padding: 6px 12px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: background 0.2s;
}

.controls-panel button:hover {
    background: #f0f0f0;
}

/* Кнопочки та випадаючі панелі в controls-panel */
.panel-dropdown {
    position: relative;
    display: inline-flex;
}

.controls-panel button.square-btn {
    width: 32px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.controls-panel button.square-btn.active {
    background: #e0ebff;
    border-color: #4a80f0;
    color: #1a50b0;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    padding: 12px;
    z-index: 200;
    cursor: default;
    user-select: text;
    text-align: left;
}

.dropdown-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.filter-group {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.filter-group input[type="text"] {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.filter-group input[type="text"]:focus {
    border-color: #4a80f0;
}

.dropdown-empty {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

#zoom-level {
    font-size: 12px;
    color: #555;
    min-width: 80px;
    text-align: center;
}

/* Робочий простір (Viewport) */
.viewport {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
    overflow: hidden;
}

.viewport:active {
    cursor: grabbing;
}

/* Нескінченна дошка */
.board {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    transform-origin: 0 0;
//	/* Вмикаємо апаратне прискорення та 3D-композитинг для GPU */
//    will-change: transform;
//    transform-style: preserve-3d;
//    backface-visibility: hidden;
//    /* Гарантуємо, що абсолютно позиціоновані картки поза межами 0х0 не ховаються */
//    overflow: visible;
}

/* Базова стилізація картки */
.card {
    position: absolute;
    border: 1px solid #abcdff;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
    transition: box-shadow 0.2s, border-color 0.2s;
    font-size: 14px; 
}

.card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    border-color: #74b3ff;
}

/* Шапка картки */
.card-header {
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: move;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title-text {
    font-size: 1.0em;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Візуальний індикатор увімкненого автомасштабу в шапці */
.card.auto-scale .card-header::after {
    content: "📐";
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.7;
}

/* Ізольований контейнер тіла картки */
.card-body-container {
    height: calc(100% - 30px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    /* Стабілізує ширину контенту, щоб скролбар не стискав текстове поле */
    scrollbar-gutter: stable; 
    box-sizing: border-box;
}

/* Текстове поле картки (Режим редагування) — усунено ефект "вікна у вікні" */
.card-text {
    width: 100%;
    height: 100%;
    border: none;
    resize: none;
    padding: 10px;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.4;
    color: #333;
    outline: none;
    background: transparent;
    display: block;
}

/* Контейнер перегляду (Режим Preview) */
.card-preview {
    width: 100%;
    height: 100%;
    padding: 10px;
    overflow-y: auto;
    font-size: inherit;
    line-height: 1.4;
    color: #222;
    background: transparent;
}

/* Рядки всередині прев'ю */












/* Рядок кванта — даємо йому невеликий внутрішній відступ зліва та справа */
.quant-row {
    display: flex;
    flex-direction: column;
    padding-left: 6px;   /* Ось цей ідеальний мікро-відступ зліва */
    padding-right: 6px;  /* Симетричний відступ справа для балансу */
    box-sizing: border-box;
    width: 100%;
}

/* Текстове поле — забираємо дефолтні браузерні рамки, щоб вони не дублювали відступи */
.quant-input {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    /* Якщо у вас є власні padding всередині textarea, вони додадуться до загального */
}

/* Прев'ю-рядок — щоб його межі чітко збігалися з полем введення */
.preview-row {
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    /* Можна також додати мінімальний відступ зверху/знизу між квантами */
    padding-top: 2px;
    padding-bottom: 2px;
}









/*
.preview-row {
    margin-bottom: 2px;
    word-break: break-all;
    white-space: pre-wrap;
}
*/









/* Стилі для Маркдауну [h], [ ], [x], [!] */
.preview-row.header-row {
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 4px;
    margin-bottom: 4px;
    color: #111;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 2px;
}

.preview-row.status-todo {
    color: #222;
}

.preview-row.status-done {
    color: #888888;
    text-decoration: line-through;
}

.preview-row.status-priority {
    color: #d32f2f;
    font-weight: 500;
}

.status-marker {
    font-weight: bold;
    margin-right: 6px;
    display: inline-block;
    user-select: none;
}

/* Куточок для зміни розміру картки */
.card-resizer {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.12);
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: se-resize;
    border-top-left-radius: 4px;
    z-index: 5;
    transition: background 0.2s;
}

.card-resizer:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* Системне контекстне меню (ПКМ) */
.context-menu {
    position: fixed;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 4px 0;
    min-width: 220px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    font-size: 13px;
    user-select: none;
}

.menu-item {
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #333;
    transition: background 0.15s;
}

.menu-item:hover {
    background: #f5f5f5;
}

.menu-item.delete-item {
    color: #d32f2f;
}

.menu-item.delete-item:hover {
    background: #ffebee;
}

.menu-color-preview {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    border: 1px solid #bbb;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 4px 0;
}

/* Обгортка редактора квантів */
.card-edit-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    gap: 4px; /* Легкий відступ між квантами */
}

/* СУВЕРЕННИЙ КВАНТ — ОЧИЩЕНИЙ МОНОЛІТНИЙ БЛОК СТИЛІВ */
.quant-input {
    width: 100% !important;
    display: block;
    resize: none;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0 !important; /* Повна заборона для Flexbox на стискання по вертикалі */
    padding: 4px 8px !important; /* Акуратні відступи для тексту всередині ареалу */
    border: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15) !important; /* Елегантна пунктирна рисочка */
    background: transparent;
    font-family: inherit;
    line-height: 1.4;
}

/* Рідний квант у фокусі (синій) */
.quant-input:focus {
    outline: none;
    border-bottom: 1px solid #007bff !important;
    background: rgba(0, 123, 255, 0.02) !important;
}

/* Дзеркальний квант у фокусі (помаранчевий маркер і теплий фон) */
.quant-input.mirror-quant:focus {
    outline: none;
    border-bottom: 4px solid #e67e22 !important; /* Тепер цей !important точно переможе */
    background: rgba(230, 126, 34, 0.04) !important;
}

/* Візуальний маркер дзеркальних квантів (постійний акцентний border-left) */
.quant-input.mirror-quant,
.quant-preview-wrapper.mirror-quant-preview,
.quant-row.mirror-quant-row {
    border-left: 3px solid #e67e22 !important;
    padding-left: 6px !important;
}

/* Прибираємо рисочку у найостаннішого кванта картки, ТІЛЬКИ якщо він не у фокусі */
.quant-input:last-child:not(:focus) {
    border-bottom: none !important;
}

/* Плашка інженерної діагностики (залишаємо для контролю метрик) */
.card-diag-overlay {
    position: absolute;
    bottom: 15px;
    left: 5px;
    background: rgba(0, 0, 0, 0.85);
    color: #00ff00;
    font-family: monospace;
    font-size: 10px;
    padding: 4px 6px;
    border-radius: 3px;
    z-index: 100;
    pointer-events: none;
    line-height: 1.2;
    white-space: pre-wrap;
}

/* =========================================================================
   Візуальні межі між квантами в режимі ПЕРЕГЛЯДУ (Preview)
   ========================================================================= */

/* Задаємо ніжну межу для прев'ю-елементів */
.card-quants-list .quant-preview-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Дуже ніжна тонка лінія */
    padding-bottom: 5px;
    margin-bottom: 5px;
    width: 100%;
}

/* Якщо це заголовок [h], він має свою пунктирну лінію, тому стандартну суцільну прибираємо */
.card-quants-list .quant-preview-wrapper:has(.header-row) {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Прибираємо лінію у найостаннішого кванта в списку, щоб він не лип до низу картки */
.card-quants-list .quant-row:last-child .quant-preview-wrapper {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Зберігаємо переноси рядків та пробіли у режимі перегляду */
.card-quants-list .preview-row {
    white-space: pre-wrap;   /* Зберігає переноси \n та переносить довгі рядки */
    word-break: break-word;  /* Запобігає виходу довгих слів за межі картки */
}

/* Стилі для динамічних кнопок та посилань у квантах */
.quant-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin: 3px 0;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.15s ease-in-out;
    user-select: none;
    color: #333;
}

/* Кнопка внутрішнього лінку (сині тони) */
.btn-card-link {
    background: #f0f7ff;
    border-color: #bcdbff;
    color: #0066cc;
}

.btn-card-link:hover {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,123,255,0.25);
}

/* Кнопка зовнішнього посилання (зелені тони) */
.btn-url-link {
    background: #f4faf4;
    border-color: #c2e0c2;
    color: #2e7d32;
}

.btn-url-link:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(46,125,50,0.25);
}

/* Анімація привернення уваги (спалах картки при переході) */
.card-highlight-flash {
    animation: highlightFlashEffect 2s ease-out;
}

@keyframes highlightFlashEffect {
    0% {
        box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.6);
        border-color: #007bff;
        transform: scale(1.03);
    }
    30% {
        box-shadow: 0 0 0 12px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-color: #abcdff;
        transform: scale(1);
    }
}

/* Роздільник та декор у контекстному меню */
.context-menu .menu-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 4px 0;
}

.context-menu .menu-item.style-red {
    color: #dc3545;
}

.context-menu .menu-item.style-red:hover {
    background: #fff5f5;
    color: #dc3545;
}

/* =========================================================================
   РОЗШИРЕНИЙ РЕДАКТОР КВАНТА (ВНУТРІШНЄ ПЛАВАЮЧЕ ВІКНО)
   ========================================================================= */
.quant-editor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.quant-editor-window {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.quant-editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    cursor: move;
    user-select: none;
}

.quant-editor-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 8px;
}

.editor-id-badge {
    background: #e9ecef;
    color: #495057;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.quant-editor-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.quant-editor-close-btn:hover {
    background: #e9ecef;
    color: #212529;
}

.quant-editor-tabs {
    display: flex;
    background: #f1f3f5;
    border-bottom: 1px solid #dee2e6;
    padding: 0 12px;
    gap: 4px;
}

.editor-tab-btn {
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
}

.editor-tab-btn:hover {
    color: #0d6efd;
}

.editor-tab-btn.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: #ffffff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.quant-editor-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.editor-tab-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.editor-tab-content.active {
    display: flex;
}

.editor-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.editor-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #343a40;
}

.editor-label-with-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.editor-mini-btn {
    background: #e7f1ff;
    color: #0d6efd;
    border: 1px solid #b6d4fe;
    border-radius: 4px;
    font-size: 11px;
    padding: 2px 8px;
    cursor: pointer;
    font-weight: 500;
}

.editor-mini-btn:hover {
    background: #0d6efd;
    color: #ffffff;
}

.editor-textarea,
.editor-input,
.editor-select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: inherit;
    color: #212529;
    background: #ffffff;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.editor-textarea:focus,
.editor-input:focus,
.editor-select:focus {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.editor-textarea.code-font {
    font-family: monospace;
    font-size: 13px;
}

.editor-help-text {
    font-size: 11px;
    color: #6c757d;
}

.editor-color-palette {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.color-swatch-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #495057;
    transition: transform 0.1s ease;
}

.color-swatch-btn:hover {
    transform: scale(1.1);
}

.editor-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.editor-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .editor-grid-2,
    .editor-grid-3 {
        grid-template-columns: 1fr;
    }
}

.quant-editor-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.editor-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.btn-cancel {
    background: #f8f9fa;
    border-color: #ced4da;
    color: #495057;
}

.btn-cancel:hover {
    background: #e2e6ea;
}

.btn-save {
    background: #0d6efd;
    color: #ffffff;
}

.btn-save:hover {
    background: #0b5ed7;
}

/* User Profile & Auth Modal Styles */
.controls-panel button.user-btn {
    padding: 6px 10px;
    font-weight: 600;
    color: #1e293b;
    border-color: #cbd5e1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 4px;
}

.controls-panel button.user-btn:hover {
    background: #e2e8f0;
}

.user-status-info {
    font-size: 13px;
    color: #475569;
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 500;
}

.menu-action-btn {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 6px;
    transition: all 0.15s ease;
}

.menu-action-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.menu-action-btn.danger {
    color: #dc2626;
    border-color: #fca5a5;
    background: #fef2f2;
}

.menu-action-btn.danger:hover {
    background: #fee2e2;
}

/* Modal Overlay & Modal Card */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: modalPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.modal-body {
    padding: 20px;
}

.modal-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.4;
}

.form-field {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.form-field input {
    padding: 9px 12px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s;
}

.form-field input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.modal-error {
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 13px;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    border-radius: 6px;
}

.modal-footer {
    padding: 14px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-primary {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

/* Стилі системних карток (Вхідні) */
.card.system-card {
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.card.system-card .card-header {
    background: rgba(59, 130, 246, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.system-card-badge {
    display: inline-block;
    margin-right: 4px;
    font-size: 11px;
}


