﻿/*
|--------------------------------------------------------------------------
| Google Sheet Board Skin
| style.css
|--------------------------------------------------------------------------
|
| Google Drive Style UI
|
|--------------------------------------------------------------------------
*/


/* ==========================================================================
   Reset
========================================================================== */

#gs-app,
#gs-app * {
    box-sizing: border-box;
}


#gs-app {
    display: flex;
    width: 100%;
    height: 100vh;
}



/* ==========================================================================
   Sidebar
========================================================================== */


#gs-sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-right: 1px solid #dadce0;
    transition: width .25s ease, transform .25s ease;
    overflow: hidden;
}



    #gs-sidebar.collapsed {
        width: 64px;
    }


        /* PC 사이드바 완전 접힘 */

        #gs-sidebar.collapsed .gs-logo,
        #gs-sidebar.collapsed .gs-search,
        #gs-sidebar.collapsed .gs-category,
        #gs-sidebar.collapsed .gs-folder-name,
        #gs-sidebar.collapsed .gs-folder-arrow,
        #gs-sidebar.collapsed .gs-document-title {
            display: none;
        }



        /* 문서 아이콘 가운데 정렬 */

        #gs-sidebar.collapsed .gs-document {
            justify-content: center;
            padding: 8px;
        }



        /* 폴더 버튼 가운데 정렬 */

        #gs-sidebar.collapsed .gs-folder-toggle {
            justify-content: center;
            padding: 8px;
        }



        /* 헤더 버튼 가운데 */

        #gs-sidebar.collapsed .gs-sidebar-header {
            justify-content: center;
            padding: 0;
        }

        #gs-sidebar.collapsed .gs-document-list {
            padding: 0;
        }

        #gs-sidebar.collapsed .gs-document {
            justify-content: center;
        }

        #gs-sidebar.collapsed .gs-folder-toggle {
            justify-content: center;
        }

        #gs-sidebar.collapsed .gs-document-icon {
            margin: 0;
        }

        #gs-sidebar.collapsed .gs-folder-icon {
            margin: 0;
        }

/* ==========================================================================
   Sidebar Header
========================================================================== */


.gs-sidebar-header {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-bottom: 1px solid #dadce0;
}



.gs-logo {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}



/* ==========================================================================
   Category
========================================================================== */


.gs-category {
    padding: 12px;
}



.gs-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}



    .gs-category-list li a {
        display: block;
        padding: 8px 12px;
        border-radius: 8px;
        color: #3c4043;
        text-decoration: none;
    }



        .gs-category-list li.active a,
        .gs-category-list li a:hover {
            background: #e8f0fe;
            color: #1967d2;
        }
/* ==========================================================================
   Search
========================================================================== */


.gs-search {
    padding: 12px;
    border-bottom: 1px solid #dadce0;
}



    .gs-search form {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }



    .gs-search select,
    .gs-search input {
        height: 36px;
        border-radius: 8px;
        border: 1px solid #dadce0;
        background: #fff;
    }


    .gs-search input {
        padding: 0 12px;
        width: 100%;
    }


    /* 검색 버튼은 테마 스타일 사용 */

    .gs-search button {
        cursor: pointer;
    }



/* ==========================================================================
   Folder Tree
========================================================================== */


.gs-tree {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}



.gs-folder {
    margin-bottom: 4px;
}



.gs-folder-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    text-align: left;
}



    .gs-folder-toggle:hover {
        background: #e8eaed;
    }



.gs-folder-arrow {
    margin-left: auto;
    transition: transform .2s;
}



.gs-folder.close .gs-folder-arrow {
    transform: rotate(-90deg);
}



.gs-folder.close .gs-document-list {
    display: none;
}



.gs-document-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
}



.gs-document {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #3c4043;
    text-decoration: none;
    overflow: hidden;
}



    .gs-document:hover {
        background: #e8f0fe;
    }



.gs-document-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gs-sort-mode {
    cursor: grab;
    opacity: .7;
}


    .gs-sort-mode:active {
        cursor: grabbing;
    }

/* ===============================
   핸들 기본 숨김
================================ */

.gs-drag-handle {
    display: none;
}



/* ===============================
   정렬 모드에서만 표시
================================ */

.gs-sort-mode .gs-folder-handle,
.gs-sort-mode .gs-doc-handle {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    cursor: grab;
    color: #999;
    flex-shrink: 0;
}



/* ===============================
   폴더
================================ */

.gs-folder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.gs-folder-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    flex: 1;
}

.gs-folder > .gs-document-list {
    width: 100%;
}

/* 폴더 이름 영역 */

.gs-folder-name {
    flex: 1;
}



/* ===============================
   시트 목록
================================ */

.gs-document-list {
    display: block;
    margin-left: 24px;
}



.gs-document-item {
    display: flex;
    align-items: center;
}



/* 시트 제목 */

.gs-doc {
    flex: 1;
}



/* 드래그 중 */

.gs-drag-handle:active {
    cursor: grabbing;
}

/* ==========================================================================
   Main Area
========================================================================== */


#gs-main {
    flex: 1;
    min-width: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}


#gs-permission-message {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}


.gs-permission-box {
    text-align: center;
    color: #777;
}


.gs-permission-icon {
    font-size: 48px;
    margin-bottom: 15px;
}


.gs-permission-box h3 {
    margin: 0 0 10px;
    color: #333;
}


.gs-permission-box p {
    margin: 0;
    color: #777;
}

/* ==========================================================================
   Toolbar
========================================================================== */


#gs-toolbar {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #dadce0;
    background: #fff;
}


.gs-toolbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.gs-toolbar-title h2 {
    margin: 2px 0 0;
    font-size: 16px;
    font-weight: 500;
}


#gs-current-folder {
    font-size: 12px;
    color: #5f6368;
}

.gs-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gs-toolbar-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    background: transparent;
    border-radius: 50%;
    color: #5f6368;
    cursor: pointer;
    transition: background .2s ease;
}


    .gs-toolbar-button svg {
        width: 16px;
        height: 16px;
        display: block;
        pointer-events: none;
    }

    .gs-toolbar-button:hover {
        background: #f1f3f4;
    }


    .gs-toolbar-button:focus {
        outline: none;
        box-shadow: none;
    }
/* ==========================================================================
   Viewer
========================================================================== */


#gs-viewer {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 30px;
    box-sizing: border-box;
    position: relative;
}


#gs-frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}


#gs-loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    background: rgba(255,255,255,.85);
    z-index: 5;
}



.gs-spinner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #dadce0;
    border-top-color: #1a73e8;
    animation: gs-spin 1s linear infinite;
}



@keyframes gs-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



#gs-empty {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #5f6368;
    pointer-events: none;
}



.gs-empty-icon {
    font-size: 48px;
}



#gs-empty h3 {
    margin: 0;
    font-size: 20px;
    color: #202124;
}


.gs-refresh-icon {
    font-size: 20px;
    line-height: 1;
}


/* ==========================================================================
   Status Bar
========================================================================== */


#gs-statusbar {
    height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    border-top: 1px solid #dadce0;
    background: #fff;
    color: #5f6368;
    font-size: 13px;
}



.gs-status-left,
.gs-status-right {
    display: flex;
    align-items: center;
    gap: 8px;
}



/* ==========================================================================
   Admin Menu
========================================================================== */


#gs-admin {
    position: relative;
    display: flex;
    align-items: center;
}


#gs-admin-menu {
    position: absolute;
    right: 0;
    top: 42px;
    min-width: 180px;
    padding: 8px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    z-index: 999;
    display: none;
}



    #gs-admin-menu.show {
        display: block;
    }



    #gs-admin-menu a {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        color: #3c4043;
        text-decoration: none;
    }



        #gs-admin-menu a:hover {
            background: #f1f3f4;
        }



/* ==========================================================================
   Pagination
========================================================================== */


#gs-pagination {
    padding: 12px;
    text-align: center;
}



    #gs-pagination a,
    #gs-pagination strong {
        display: inline-flex;
        min-width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        margin: 0 2px;
        border-radius: 6px;
        text-decoration: none;
    }



    #gs-pagination strong {
        background: #1a73e8;
        color: #fff;
    }

/* ==========================================================================
   Context Menu
========================================================================== */


#gs-context-menu {
    position: absolute;
    display: none;
    min-width: 180px;
    padding: 8px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
    z-index: 100;
}



    #gs-context-menu.show {
        display: block;
    }



    #gs-context-menu button,
    #gs-context-menu a {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border: 0;
        background: transparent;
        border-radius: 8px;
        color: #3c4043;
        text-decoration: none;
        cursor: pointer;
        font-size: 14px;
    }



        #gs-context-menu button:hover,
        #gs-context-menu a:hover {
            background: #f1f3f4;
        }



    #gs-context-menu hr {
        border: 0;
        border-top: 1px solid #dadce0;
        margin: 6px 0;
    }



/* ==========================================================================
   Dialog
========================================================================== */


#gs-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 200;
}



#gs-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 360px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    z-index: 201;
}



    #gs-dialog[hidden],
    #gs-dialog-overlay[hidden] {
        display: none;
    }



.gs-dialog-header {
    padding: 18px;
    border-bottom: 1px solid #dadce0;
}



    .gs-dialog-header h3 {
        margin: 0;
        font-size: 18px;
    }



.gs-dialog-body {
    padding: 20px;
    color: #5f6368;
}



.gs-dialog-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 18px;
}



/* ==========================================================================
   Buttons
========================================================================== */


.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid #dadce0;
    text-decoration: none;
    cursor: pointer;
}



/* ==========================================================================
   Write Page
========================================================================== */
.gs-category {
    display: none;
}

#gs-write {
    width: 100%;
    min-height: 100%;
    background: #fff;
}

    #gs-write.gs-toolbar-button {
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

.gs-write-header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #dadce0;
}



    .gs-write-header h1 {
        margin: 0;
        font-size: 20px;
    }



.gs-write-actions {
    display: flex;
    gap: 8px;
}



.gs-write-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}



.gs-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}



    .gs-form-row label {
        font-size: 14px;
        font-weight: 600;
        color: #3c4043;
    }



    .gs-form-row input,
    .gs-form-row select,
    .gs-form-row textarea {
        width: 100%;
        border: 1px solid #dadce0;
        border-radius: 8px;
        padding: 12px;
        font-size: 14px;
    }



    .gs-form-row textarea {
        resize: vertical;
        min-height: 180px;
    }



.gs-radio-group {
    display: flex;
    gap: 20px;
}



    .gs-radio-group label {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: normal;
    }



/* ==========================================================================
   Option / File
========================================================================== */


.gs-option-box {
    display: flex;
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f8f9fa;
}



.gs-file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 13px;
}



    .gs-file-info label {
        font-weight: normal;
    }



/* ==========================================================================
   Write Footer
========================================================================== */


.gs-write-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border-top: 1px solid #dadce0;
}
/* ==========================================================================
   View Page
========================================================================== */


#gs-view {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
}



.gs-view-header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #dadce0;
}



    .gs-view-header h1 {
        margin: 0;
        font-size: 20px;
    }



.gs-view-actions {
    display: flex;
    gap: 8px;
}



.gs-view-info {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    border-bottom: 1px solid #dadce0;
    background: #f8f9fa;
}



    .gs-view-info div {
        display: flex;
        gap: 8px;
    }



    .gs-view-info strong {
        color: #5f6368;
    }



.gs-viewer {
    flex: 1;
    min-height: 600px;
}



#gs-view-frame {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
}



.gs-view-content {
    padding: 24px;
    border-top: 1px solid #dadce0;
}



/* ==========================================================================
   Toast
========================================================================== */


#gs-toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 300;
}



.gs-toast {
    padding: 12px 18px;
    border-radius: 8px;
    background: #323232;
    color: #fff;
    font-size: 14px;
    animation: gs-toast-show .25s ease;
}



@keyframes gs-toast-show {

    from {
        opacity: 0;
        transform: translateY(10px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ==========================================================================
   Floating Button
========================================================================== */


#gs-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,.25);
}

/* ==========================================================================
   Mobile Sidebar
========================================================================== */


#gs-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: none;
    z-index: 90;
}



    #gs-mobile-overlay.show {
        display: block;
    }



#gs-mobile-menu {
    display: none;
}



/* ==========================================================================
   Responsive
========================================================================== */


@media (max-width: 768px) {


    #gs-app {
        height: 100vh;
    }



    #gs-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 280px;
        transform: translateX(-100%);
        z-index: 100;
        box-shadow: 4px 0 16px rgba(0,0,0,.15);
    }

        #gs-sidebar.show {
            transform: translateX(0);
        }



        #gs-sidebar.collapsed {
            width: 280px;
        }



            #gs-sidebar.collapsed .gs-logo,
            #gs-sidebar.collapsed .gs-folder-name,
            #gs-sidebar.collapsed .gs-search,
            #gs-sidebar.collapsed .gs-category {
                display: block;
            }



    #gs-toolbar {
        height: 56px;
        padding: 0 16px;
    }



    .gs-toolbar-title h2 {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }



    .gs-toolbar-right .gs-toolbar-button {
        width: 34px;
        height: 34px;
    }



    #gs-statusbar {
        display: none;
    }



    #gs-pagination {
        overflow-x: auto;
    }



    #gs-fab {
        display: flex;
    }
}

/* ==========================================================
   PC Sidebar Bottom Space
========================================================== */

@media (min-width:769px) {


    #gs-sidebar {
        height: calc(100vh - 30px);
        margin-top: 0;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   Small Mobile
========================================================================== */


@media (max-width: 480px) {


    #gs-current-folder {
        display: none;
    }



    #gs-toolbar-right {
        gap: 2px;
    }



    .gs-toolbar-button {
        font-size: 14px;
    }



    .gs-write-body {
        padding: 16px;
    }



    .gs-write-header {
        padding: 0 16px;
    }



    .gs-view-info {
        flex-direction: column;
        gap: 8px;
    }
}



/* ==========================================================================
   Scrollbar
========================================================================== */


#gs-sidebar ::-webkit-scrollbar,
.gs-tree::-webkit-scrollbar {
    width: 8px;
}



#gs-sidebar ::-webkit-scrollbar-thumb,
.gs-tree::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 10px;
}
/* ==========================================================================
   Mobile Toolbar
========================================================================== */


#gs-mobile-toolbar {
    display: none;
}



#gs-mobile-actions {
    position: fixed;
    right: 16px;
    bottom: 80px;
    min-width: 180px;
    padding: 8px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
    z-index: 120;
}



    #gs-mobile-actions button,
    #gs-mobile-actions a {
        display: flex;
        width: 100%;
        height: 40px;
        align-items: center;
        padding: 0 12px;
        border: 0;
        background: transparent;
        color: #3c4043;
        text-decoration: none;
        cursor: pointer;
        border-radius: 8px;
    }



        #gs-mobile-actions button:hover,
        #gs-mobile-actions a:hover {
            background: #f1f3f4;
        }



/* ==========================================================================
   Mobile Toolbar Display
========================================================================== */


@media (max-width: 768px) {


    #gs-mobile-toolbar {
        position: fixed;
        right: 16px;
        bottom: 16px;
        display: flex;
        gap: 8px;
        z-index: 110;
    }



        #gs-mobile-toolbar button,
        #gs-mobile-toolbar a {
            width: 48px;
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            border: 0;
            background: #1a73e8;
            color: #fff;
            text-decoration: none;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 3px 12px rgba(0,0,0,.2);
        }



    #gs-mobile-sidebar {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #5f6368;
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        font-size: 0;
        flex-shrink: 0;
        transition: background .2s ease;
    }



        /* 햄버거 아이콘 */

        #gs-mobile-sidebar::before {
            content: "";
            width: 18px;
            height: 14px;
            background: linear-gradient(#5f6368,#5f6368) 0 0 / 18px 2px no-repeat, linear-gradient(#5f6368,#5f6368) 0 6px / 18px 2px no-repeat, linear-gradient(#5f6368,#5f6368) 0 12px / 18px 2px no-repeat;
        }



        /* hover */

        #gs-mobile-sidebar:hover {
            background: #f1f3f4;
        }



        /* 클릭 */

        #gs-mobile-sidebar:active {
            background: #e8eaed;
            transform: scale(.92);
        }
}

/* ==========================================================
   PC Sidebar Toggle Button
========================================================== */

/* PC Sidebar Button */

#gs-sidebar-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    flex-shrink: 0;
    transition: .2s ease;
}



    #gs-sidebar-toggle::before {
        content: "";
        width: 18px;
        height: 14px;
        background: linear-gradient(#5f6368,#5f6368) 0 0 / 18px 2px no-repeat, linear-gradient(#5f6368,#5f6368) 0 6px / 18px 2px no-repeat, linear-gradient(#5f6368,#5f6368) 0 12px / 18px 2px no-repeat;
    }



    #gs-sidebar-toggle:hover {
        background: #f1f3f4;
    }


    #gs-sidebar-toggle:active {
        transform: scale(.92);
    }


/* ==========================================================================
   Empty / Error / Loading
========================================================================== */


.gs-loading-box,
.gs-empty-box,
.gs-error-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #5f6368;
}



.gs-error-box {
    color: #d93025;
}



/* ==========================================================================
   No Script
========================================================================== */


.gs-noscript {
    padding: 20px;
    margin: 20px;
    background: #fce8e6;
    border: 1px solid #f6aea9;
    border-radius: 8px;
    color: #c5221f;
    text-align: center;
}



/* ==========================================================================
   Utility
========================================================================== */


.sound_only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.gs-mobile-open {
    display: none;
}


@media(max-width:768px) {

    .gs-mobile-open {
        display: flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        font-size: 22px;
        cursor: pointer;
    }
}

.gs-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===============================
   Mode Toggle Button
================================ */


#gs-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


    #gs-mode-toggle .gs-icon {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }


    #gs-mode-toggle:hover {
        background: rgba(0,0,0,.06);
    }

/* ==========================================================================
   End
========================================================================== */