:root {
    --sidebar-width: 320px;
    --scrollspy-width: 240px;
}

body {
    margin: 0 auto;
    padding: 62px 5px 0 240px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url('assets/GLPI_empty.png');
    background-size: auto;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    max-width: 2063px;
}

.kb-container {
    display: flex;
    height: calc(100vh - 62px);
    overflow: hidden;
    position: relative;
}

/* Left Sidebar - Document Tree */
.kb-sidebar {
    width: var(--sidebar-width);
    background: #edf2f7;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.kb-sidebar.collapsed {
    width: 12px;
    overflow: visible;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    flex-direction: row;
    background: #edf2f7;
    z-index: 1100;
}

.kb-sidebar.collapsed::before {
    content: '';
    display: block;
    width: 24px;
    height: 100%;
    background: linear-gradient(90deg, rgba(237, 242, 247, 0.8), transparent);
    cursor: pointer;
}

.kb-sidebar.collapsed:hover {
    width: var(--sidebar-width);
    background: #edf2f7;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
}

.kb-sidebar.collapsed:hover::before {
    display: none;
}

/* Sidebar header */
.kb-sidebar-header {
    flex-shrink: 0;
    min-height: 3rem;
}

.kb-sidebar.collapsed .kb-sidebar-header {
    display: none;
}

.kb-sidebar.collapsed:hover .kb-sidebar-header {
    display: flex;
}

.kb-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.kb-sidebar.collapsed .kb-sidebar-content {
    display: none;
    width: 0;
}

.kb-sidebar.collapsed:hover .kb-sidebar-content {
    display: flex;
    flex-direction: column;
    width: auto;
}

/* Sidebar toggle button */
.kb-sidebar-toggle {
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.kb-sidebar-toggle:hover {
    color: #3a5693 !important;
}

.kb-sidebar-toggle i {
    transition: transform 0.2s ease;
}

.kb-sidebar.collapsed .kb-sidebar-toggle i {
    transform: rotate(180deg);
}

.doc-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-tree-item {
    margin: 0px 0;
}

.doc-tree-link {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: rgb(58, 86, 147);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s;
    font-size: 0.9rem;
    gap: 0.25rem;
}

.doc-tree-link:hover {
    background: #f1f5f9;
    color: rgb(58, 86, 147);
}

.doc-tree-link.active {
    background: #d7e0ea;
    color: rgb(58, 86, 147);
    font-weight: 500;
}

.doc-tree-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.kb-sidebar-icon {
    flex-shrink: 0;
    width: 20px;
    height: auto;
    display: block;
    margin-left: 5px;
}

.doc-tree-row {
    position: relative;
}

.doc-tree-row .doc-add-child {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    margin-left: 0.25rem;
}

.doc-tree-row .doc-action-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    margin-left: 0.25rem;
}

.doc-tree-row:hover .doc-action-menu {
    opacity: 1;
    visibility: visible;
}

.doc-tree-row:hover .doc-add-child {
    opacity: 1;
    visibility: visible;
}

.doc-action-menu .btn {
    color: #64748b;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-action-menu .btn:hover {
    color: #0f172a;
    background: #f1f5f9;
    border-radius: 4px;
}

.doc-add-child .btn {
    color: #64748b;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-add-child .btn:hover {
    color: #0f172a;
    background: #f1f5f9;
    border-radius: 4px;
}

.doc-inline-editor input[type="text"] {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    font-size: 0.9rem;
}

.doc-inline-editor input[type="text"]:focus {
    outline: 2px solid #bfdbfe;
    border-color: #93c5fd;
}

.doc-tree-toggle {
    background: none;
    border: none;
    padding: 0;
    width: 16px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-tree-nested {
    list-style: none;
    padding-left: 1.25rem;
    margin: 2px 0;
}

.doc-tree-nested.collapsed {
    display: none;
}

.doc-section-title {
    padding: 1rem 0.75rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.doc-draft-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-left: auto;
}

/* Main Content Area */
.kb-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kb-content-header {
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: between;
    z-index: 1080;
}

.kb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 1rem;
}

.kb-breadcrumb-title {
    transition: opacity 0.2s;
    font-weight: 600;
    color: #0f172a;
}

.kb-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mode-toggle {
    display: flex;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 3px;
}

.mode-toggle button {
    padding: 0.4rem 1rem;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s;
}

.mode-toggle button.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.kb-content-wrapper {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
}

.kb-content {
    flex: 1;
    overflow-y: auto;
}

.kb-document-wrapper {
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
}

.kb-document-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kb-document-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.kb-title-icon {
    flex-shrink: 0;
    width: 64px;
    height: auto;
    display: block;
}

.kb-title-icon-wrapper {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 4px;
    transition: all 0.2s ease;
}

.editor-mode .kb-title-icon-wrapper:hover {
    border-color: rgba(58, 86, 147, 0.6);
    box-shadow: 0 0 0 3px rgba(58, 86, 147, 0.1);
    position: relative;
}

.editor-mode .kb-title-icon-wrapper:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editor-mode .kb-title-icon-wrapper:hover::before {
    content: '\eb04';
    font-family: 'tabler-icons';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    color: white;
    background: rgb(58, 86, 147);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Editable content - remove browser default styles */
[contenteditable="true"] {
    outline: none;
}

[contenteditable="true"]:focus {
    outline: none;
}

/* Text Selection Popup */
.text-selection-popup {
    position: absolute;
    z-index: 1000;
    animation: popupFadeIn 0.2s ease;

    button {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kb-document-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    position: relative;
}

.kb-document-wrapper h2:hover::before,
.kb-document-wrapper h3:hover::before {
    content: '#';
    position: absolute;
    left: -1.5rem;
    color: #93c5fd;
    font-weight: 400;
    cursor: pointer;
}

.kb-document-wrapper h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #334155;
    margin: 1.5rem 0 0.75rem;
    position: relative;
}

.kb-document {
    padding-right: calc(var(--scrollspy-width) + 2rem);
}

.kb-document-wrapper p {
    line-height: 1.7;
    color: #475569;
    margin: 0.75rem 0;
}

.kb-document-wrapper ul,
.kb-document-wrapper ol {
    line-height: 1.7;
    color: #475569;
    margin: 0.75rem 0;
}

.kb-document-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(230, 233, 239, 0.5);
}

/* Footer tabs (documents / related items) */
.kb-footer-nav {
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.25rem;
}

.kb-footer-nav .nav-link {
    color: #475569;
    border: none;
    border-radius: 0;
    padding: 0.45rem 0.25rem;
    margin-right: 0;
    position: relative;
    transition: color 0.2s ease;
}

.kb-footer-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.kb-footer-nav .nav-link:hover {
    color: #0f172a;
}

.kb-footer-nav .nav-link:hover::after {
    background: #cbd5e1;
}

.kb-footer-nav .nav-link.active {
    color: #0f172a;
    font-weight: 600;
}

.kb-footer-nav .nav-link.active::after {
    background: #3a5693;
}

.kb-related-list .list-group-item {
    border-color: #e2e8f0;
    transition: all 0.2s ease;
}

.kb-related-list .list-group-item:hover {
    background: #f8f9fa;
}

.mention {
    background: #e0e7ff;
    color: #4338ca;
    padding: 6px;
    border-radius: 4px;
    font-weight: 500;
}

.emoji {
    font-size: 1.2em;
    vertical-align: middle;
}

/* Translation Mode */
.kb-translation-alert {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border: 1px solid #bae6fd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
    max-width: 70%;
    position: relative;
    padding-right: 5.5rem;
}

.kb-translation-alert i {
    color: #0284c7;
    font-size: 1.1rem;
}

.kb-translation-alert .form-select-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    border: 1px solid #bae6fd;
}

.kb-translation-alert a {
    color: #0284c7;
    font-size: 0.85rem;
}

.kb-translation-alert a:hover {
    color: #0369a1;
}

.kb-translation-alert .kb-translation-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.35rem;
}

.kb-translation-alert .kb-translation-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #0284c7;
}

.kb-translation-alert .kb-translation-action:hover {
    background: rgba(2, 132, 199, 0.08);
}

.kb-translation-alert .kb-translation-delete {
    color: #b91c1c;
}

.kb-translation-alert .kb-translation-delete:hover {
    background: rgba(185, 28, 28, 0.1);
}

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

/* Right Sidebar - Scrollspy */
.kb-scrollspy {
    width: var(--scrollspy-width);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 100;
}

.kb-scrollspy h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
}

.scrollspy-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scrollspy-nav li {
    margin: 0.5rem 0;
}

.scrollspy-nav a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 0.25rem 0.25rem;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    transition: all 0.15s;
}

.scrollspy-nav a:hover {
    color: #0f172a;
    border-left-color: #cbd5e1;
}

.scrollspy-nav a.active {
    color: #0369a1 !important;
    font-weight: bold;
    border-left-color: #0284c7 !important;
}

.scrollspy-nav a.level-3 {
    padding-left: 1.5rem;
    font-size: 0.8rem;
}

/* Action Menu Dropdown */
.action-menu {
    position: relative;
    z-index: 1050;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 1050;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #475569;
}

.dropdown-divider {
    background: rgba(230, 233, 239, 0.5);
    margin: 0.25rem 0;
}

/* Submenu dropdown */
.dropend .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.125rem;
}

.dropdown-toggle::after {
    margin-left: auto;
}

.dropend > .dropdown-toggle::after {
    border-left: 0.3em solid;
    border-right: 0;
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    transform: rotate(-90deg);
}

/* Highlights in content */
.kb-highlight {
    background: transparent;
    border-bottom: 2px solid #93c5fd;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.kb-highlight:hover {
    border-bottom-color: #3b82f6;
    background: rgba(147, 197, 253, 0.1);
}

.kb-highlight.active {
    background: #dbeafe;
    border-bottom: none;
    border-radius: 3px;
    padding: 2px 4px;
}

/* Comments Panel */
.kb-comments-panel {
    width: 300px;
    z-index: 1080;
    display: none;
    flex-direction: column;
    border-left: 1px solid rgba(230, 233, 239, 0.5);
}

.kb-comments-panel.open {
    display: flex !important;
}

.kb-comments-list {
    overflow-y: auto;
}

.kb-comment {
    transition: all 0.2s;
}

.kb-comment:hover {
    background: #f8f9fa;
}

.kb-comment.highlighted {
    background: #dbeafe;
    border-left: 3px solid #3b82f6;
}

.kb-comment.resolved {
    opacity: 0.6;
}

.kb-comment .small {
    line-height: 1.4;
}

.kb-comment-compose {
    background: rgba(249, 250, 251, 0.5);
}

.kb-comment-compose textarea {
    resize: none;
    font-size: 0.9rem;
}

.kb-comment-compose textarea:focus {
    outline: 2px solid #bfdbfe;
    border-color: #93c5fd;
}

/* Icon Editor Modal */
.icon-drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    background: #f8fafc;
    transition: all 0.2s ease;
    cursor: pointer;
}

.icon-drop-zone:hover {
    border-color: #3a5693;
    background: #f1f5f9;
}

.icon-drop-zone.drag-over {
    border-color: #3a5693;
    background: #e0e7ff;
}

.icon-drop-zone .drop-zone-content {
    pointer-events: none;
}

/* History Panel */
.kb-history-panel {
    width: 320px;
    z-index: 1080;
    display: none;
    flex-direction: column;
    border-left: 1px solid rgba(230, 233, 239, 0.5);
}

.kb-history-panel.open {
    display: flex !important;
}

.kb-history-list {
    max-height: calc(100vh - 62px - 60px);
    overflow-y: auto;
}

.kb-history-entry {
    transition: all 0.2s;
    cursor: pointer;
}

.kb-history-entry:hover {
    background: #f8f9fa;
}

.kb-history-entry.reverted {
    background: #dcfce7;
    border-left: 3px solid #16a34a;
}

.cursor-pointer {
    cursor: pointer;
}

/* Tabler Steps Component Styles */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
}

.step-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0.375rem;
    top: 5px;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #cbd5e1;
    border: 2px solid white;
    z-index: 1000;
}

.step-item::after {
    content: '';
    position: absolute;
    left: 0.6875rem;
    top: 0.75rem;
    width: 1px;
    height: calc(100% + 0.75rem);
    background: #e2e8f0;
}

.step-item:last-child::after {
    display: none;
}

/* Search Modal Styles */
#searchModal .modal-dialog {
    max-width: 600px;
}

#searchModal .modal-content {
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#searchModal .modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

#searchModal .form-control-lg {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
}

#searchModal .form-control-lg:focus {
    background: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(58, 86, 147, 0.15);
}

#searchModal .input-group-text {
    border-right: 1px solid #e2e8f0;
}

#searchModal .list-group-item {
    border-color: #e2e8f0;
    transition: all 0.2s ease;
}

#searchModal .list-group-item:hover {
    background-color: #f8f9fa;
    border-color: #3a5693;
}

#searchModal .list-group-item h6 {
    color: #0f172a;
}

#searchModal .btn-outline-secondary {
    border-color: #d1d5db;
    color: #3a5693;
    font-size: 0.875rem;
    white-space: nowrap;
}

#searchModal .btn-outline-secondary:hover {
    background-color: #3a5693;
    border-color: #3a5693;
    color: #ffffff;
}

#searchModal .bg-light {
    background-color: #f8f9fa !important;
}

/* FAQ and Favorites Toggle Styling */
.faq-toggle-link,
.favorites-toggle-link {
    transition: all 0.2s ease;
}

.faq-toggle-link:hover,
.favorites-toggle-link:hover {
    background-color: #f8f9fa;
}

.faq-toggle-switch,
.favorites-toggle-switch {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 16px;
}

.faq-toggle-checkbox,
.favorites-toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.faq-toggle-label,
.favorites-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle-label::before,
.favorites-toggle-label::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-toggle-checkbox:checked + .faq-toggle-label,
.favorites-toggle-checkbox:checked + .favorites-toggle-label {
    background-color: #fbbf24;
}

.faq-toggle-checkbox:checked + .faq-toggle-label::before,
.favorites-toggle-checkbox:checked + .favorites-toggle-label::before {
    left: 18px;
}

.faq-toggle-link.active,
.favorites-toggle-link.active {
    background-color: #fef3c7 !important;
}

.faq-toggle-link.active i,
.favorites-toggle-link.active i {
    color: #f59e0b;
}

/* Documents Footer Styling */
.kb-documents-footer {
    margin-bottom: 2rem;
}

.kb-documents-link {
    transition: all 0.2s ease;
    cursor: pointer;
}

.kb-documents-link:hover {
    color: #3a5693 !important;
}

.kb-document-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.kb-document-badge:hover {
    background-color: #3a5693 !important;
    color: #ffffff !important;
    border-color: #3a5693;
    box-shadow: 0 2px 4px rgba(58, 86, 147, 0.2);
}

.kb-document-badge:hover i {
    color: #ffffff !important;
}

/* Add Document Modal Styling */
.document-drop-zone {
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.document-drop-zone:hover,
.document-drop-zone.drag-over {
    border-color: #3a5693;
    background-color: #e8eef5;
}

.document-drop-zone.drag-over {
    border-style: solid;
    box-shadow: 0 0 0 4px rgba(58, 86, 147, 0.1);
}

.drop-zone-content i {
    transition: transform 0.3s ease;
}

.document-drop-zone:hover .drop-zone-content i {
    transform: scale(1.1);
}

.document-file-list {
    max-height: 300px;
    overflow-y: auto;
}

.document-file-item {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.document-file-item .file-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.document-file-item .file-info {
    flex-grow: 1;
    min-width: 0;
}

.document-file-item .file-name {
    font-weight: 500;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-file-item .file-size {
    font-size: 0.75rem;
    color: #6b7280;
}

.document-file-item .remove-file {
    flex-shrink: 0;
}

