/* Editor Styles */
.editor-body {
    background: #F3F4F6;
    min-height: 100vh;
    /* Use dvh for mobile browsers that have dynamic viewport */
    min-height: 100dvh;
    overflow: hidden;
    /* Prevent overscroll/bounce on iOS */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

/* Editor Navigation */
.editor-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    height: 60px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.back-btn:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}

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

.action-btn svg {
    width: 18px;
    height: 18px;
}

.zoom-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.zoom-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 50px;
    text-align: center;
}

/* Editor Layout */
.editor-layout {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    height: calc(100vh - 60px);
    /* Use dvh for mobile browsers */
    height: calc(100dvh - 60px);
}

/* Sidebars */
.tools-sidebar, .properties-sidebar {
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    padding: 16px;
}

.properties-sidebar {
    border-right: none;
    border-left: 1px solid var(--border);
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.tool-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border: 2px solid var(--border);
    background: var(--background);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.tool-btn:hover {
    border-color: var(--primary);
    background: #FFF5F3;
}

.tool-btn.active {
    border-color: var(--primary);
    background: #FFF5F3;
}

.tool-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.tool-btn:hover svg,
.tool-btn.active svg {
    color: var(--primary);
}

.tool-btn span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Shapes Grid */
.shapes-grid, .icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.shape-btn, .icon-btn {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    padding: 6px;
}

.shape-btn svg, .icon-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.shape-btn:hover, .icon-btn:hover {
    border-color: var(--primary);
    background: #FFF5F3;
}

.shape-btn:hover svg, .icon-btn:hover svg {
    color: var(--primary);
}

/* Icon Search */
.icon-search {
    margin-bottom: 12px;
}

.icon-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.icon-search input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Canvas Settings */
.canvas-settings {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.setting-row label {
    font-size: 13px;
    color: var(--text-secondary);
}

.color-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-input-wrapper input[type="color"] {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.transparent-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    background: linear-gradient(45deg, #ccc 25%, transparent 25%),
                linear-gradient(-45deg, #ccc 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #ccc 75%),
                linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.transparent-btn.active {
    border-color: var(--primary);
}

.transparent-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.setting-row select {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    background: var(--surface);
}

/* Layers List */
.layers-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--background);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.layer-item:hover {
    background: var(--surface-hover);
}

.layer-item.selected {
    background: #FFF5F3;
    border: 1px solid var(--primary);
}

.layer-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.layer-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.layer-visibility {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
}

.layer-visibility:hover {
    opacity: 1;
}

.layer-visibility svg {
    width: 14px;
    height: 14px;
}

/* Canvas Area */
.canvas-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5E7EB;
    overflow: auto;
    padding: 40px;
}

.canvas-wrapper {
    position: relative;
}

.canvas-container {
    position: relative;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: 4px;
    overflow: hidden;
}

#logoCanvas {
    display: block;
    width: 500px;
    height: 500px;
}

/* Selection Box */
.selection-box {
    position: absolute;
    border: 2px solid var(--primary);
    pointer-events: none;
}

.resize-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 2px;
    pointer-events: all;
    cursor: pointer;
}

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

.rotate-handle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: all;
    cursor: grab;
}

.rotate-handle::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: var(--primary);
}

/* Properties Sidebar */
.no-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    text-align: center;
    color: var(--text-muted);
}

.no-selection svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.no-selection p {
    font-size: 14px;
}

.property-panel {
    margin-bottom: 20px;
}

.property-group {
    margin-bottom: 16px;
}

.property-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.property-group input[type="text"],
.property-group input[type="number"],
.property-group textarea,
.property-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
}

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

.property-row {
    display: flex;
    gap: 12px;
}

.property-group.half {
    flex: 1;
}

/* Color Picker */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-picker-wrapper input[type="color"] {
    width: 40px;
    height: 36px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.hex-input {
    flex: 1;
    font-family: 'Roboto Mono', monospace;
    font-size: 13px !important;
}

/* Range Inputs */
.property-group input[type="range"] {
    width: 100%;
    margin-bottom: 4px;
}

.range-value {
    font-size: 12px;
    color: var(--text-muted);
}

/* Style Buttons */
.style-buttons {
    display: flex;
    gap: 8px;
}

.style-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.style-btn:hover {
    border-color: var(--primary);
}

.style-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.style-btn svg {
    width: 18px;
    height: 18px;
}

/* Fill Type Buttons */
.fill-type-buttons {
    display: flex;
    gap: 4px;
}

.fill-type-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.fill-type-btn:hover {
    border-color: var(--primary);
}

.fill-type-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Gradient Inputs */
.gradient-inputs {
    display: flex;
    gap: 12px;
}

.gradient-inputs .color-picker-wrapper {
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.color-label {
    font-size: 11px;
    color: var(--text-muted);
}

/* Stroke Inputs */
.stroke-inputs {
    display: flex;
    gap: 8px;
}

.stroke-inputs input[type="color"] {
    width: 40px;
    height: 36px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.stroke-inputs input[type="number"] {
    flex: 1;
}

/* Arrange Buttons */
.arrange-buttons {
    display: flex;
    gap: 8px;
}

.arrange-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.arrange-btn:hover {
    border-color: var(--primary);
    background: #FFF5F3;
}

.arrange-btn.delete:hover {
    border-color: var(--error);
    background: #FFF5F5;
    color: var(--error);
}

.arrange-btn svg {
    width: 18px;
    height: 18px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    width: 480px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.modal-large {
    width: 800px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.export-note {
    font-size: 13px;
    color: var(--success);
    font-weight: 500;
}

/* Export Modal */
.export-preview {
    background: linear-gradient(45deg, #ccc 25%, transparent 25%),
                linear-gradient(-45deg, #ccc 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #ccc 75%),
                linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
    border-radius: var(--radius-md);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.export-preview svg {
    max-width: 180px;
    max-height: 180px;
}

.export-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.export-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.export-option label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.format-buttons, .bg-toggle {
    display: flex;
    gap: 8px;
}

.format-btn, .bg-btn {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--border);
    background: var(--background);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.format-btn:hover, .bg-btn:hover {
    border-color: var(--primary);
}

.format-btn.active, .bg-btn.active {
    border-color: var(--primary);
    background: #FFF5F3;
    color: var(--primary);
}

.export-option select {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
}

/* Preview Modal */
.preview-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preview-container {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background 0.3s;
}

.preview-container svg {
    max-width: 300px;
    max-height: 300px;
}

.preview-backgrounds {
    display: flex;
    gap: 12px;
}

.preview-bg-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.preview-bg-btn:hover {
    transform: scale(1.1);
}

.preview-bg-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .editor-layout {
        grid-template-columns: 240px 1fr 260px;
    }
}

/* Mobile Styles */
@media (max-width: 900px) {
    .editor-layout {
        grid-template-columns: 1fr;
        position: relative;
    }

    .tools-sidebar, .properties-sidebar {
        display: none;
        position: fixed;
        top: 60px;
        bottom: calc(60px + env(safe-area-inset-bottom, 0px));
        width: 85%;
        max-width: 320px;
        z-index: 200;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        transition: transform 0.3s ease;
    }

    .tools-sidebar {
        left: 0;
        transform: translateX(-100%);
        border-right: 1px solid var(--border);
    }

    .properties-sidebar {
        right: 0;
        transform: translateX(100%);
        border-left: 1px solid var(--border);
    }

    .tools-sidebar.mobile-open,
    .properties-sidebar.mobile-open {
        display: block;
        transform: translateX(0);
    }

    /* Mobile overlay when sidebar is open */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: calc(60px + env(safe-area-inset-bottom, 0px));
        background: rgba(0, 0, 0, 0.5);
        z-index: 199;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Mobile bottom toolbar - positioned above browser UI with safe area */
    .mobile-toolbar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--surface);
        border-top: 1px solid var(--border);
        z-index: 100;
        padding: 8px 16px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
        justify-content: space-around;
        align-items: center;
        /* Ensure visibility above browser chrome */
        min-height: 60px;
    }

    .mobile-toolbar-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 6px 12px;
        border: none;
        background: transparent;
        border-radius: var(--radius-md);
        cursor: pointer;
        color: var(--text-secondary);
        transition: all 0.2s;
        /* Prevent text selection on touch */
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-toolbar-btn:hover,
    .mobile-toolbar-btn.active {
        background: #FFF5F3;
        color: var(--primary);
    }

    .mobile-toolbar-btn svg {
        width: 22px;
        height: 22px;
    }

    .mobile-toolbar-btn span {
        font-size: 10px;
        font-weight: 500;
    }

    /* Adjust canvas area for mobile - account for toolbar + safe area */
    .canvas-area {
        padding: 16px;
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        /* Use dvh for dynamic viewport height that accounts for browser UI */
        min-height: calc(100dvh - 60px);
    }

    /* Make canvas fit better on mobile */
    #logoCanvas {
        max-width: 100%;
        height: auto;
    }

    /* Hide desktop nav items on mobile */
    .nav-center {
        display: none;
    }

    .nav-right .btn span {
        display: none;
    }

    .nav-right .btn {
        padding: 8px;
        min-width: auto;
    }

    .nav-right .btn svg {
        margin-right: 0;
    }

    /* Adjust editor nav for mobile */
    .editor-nav {
        padding: 8px 12px;
        padding-top: calc(8px + env(safe-area-inset-top, 0px));
    }

    .brand-name {
        display: none;
    }

    /* Larger touch targets for resize/rotate handles on mobile */
    .resize-handle {
        width: 16px;
        height: 16px;
    }

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

    .rotate-handle {
        width: 28px;
        height: 28px;
        top: -40px;
    }

    /* Font dropdown adjustments for mobile */
    .font-dropdown-menu {
        max-height: 280px;
    }

    .font-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .font-category-btn {
        flex-shrink: 0;
    }
}

/* Hide mobile toolbar on desktop */
.mobile-toolbar {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* Font Dropdown Styles */
.font-dropdown-wrapper {
    position: relative;
}

.font-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 40px;
}

.font-dropdown-trigger:hover {
    border-color: var(--text-muted);
}

.font-dropdown-trigger:focus {
    outline: none;
    border-color: var(--primary);
}

.font-dropdown-trigger.open {
    border-color: var(--primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.font-preview {
    font-size: 14px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.font-dropdown-trigger.open .dropdown-arrow {
    transform: rotate(180deg);
}

.font-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--primary);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    max-height: 350px;
    overflow: hidden;
    flex-direction: column;
}

.font-dropdown-menu.open {
    display: flex;
}

.font-search {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    outline: none;
}

.font-search:focus {
    background: #FAFAFA;
}

.font-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
    background: #FAFAFA;
}

.font-category-btn {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
}

.font-category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.font-category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.font-list {
    flex: 1;
    overflow-y: auto;
    max-height: 250px;
}

.font-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 16px;
    color: var(--text-primary);
    border-bottom: 1px solid #F3F4F6;
}

.font-option:hover {
    background: #FFF5F3;
}

.font-option.selected {
    background: #FFF0ED;
    color: var(--primary);
    font-weight: 500;
}

.font-option:last-child {
    border-bottom: none;
}

.font-list::-webkit-scrollbar {
    width: 6px;
}

.font-list::-webkit-scrollbar-track {
    background: #F3F4F6;
}

.font-list::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.font-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

.no-fonts-found {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
