@charset "UTF-8";
/**
 * Bootstrap 호환 CSS
 * Bootstrap 제거 후 기존 UI 유지를 위한 자체 구현 스타일
 * Created: 2025-12-07
 */

/* ==========================================
 * Reset / Base
 * ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ==========================================
 * Grid System (Bootstrap 3 호환)
 * ========================================== */
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row::before,
.row::after {
    display: table;
    content: " ";
}
.row::after {
    clear: both;
}

/* Column classes */
[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 { width: 8.33333333%; }
.col-xs-2, .col-sm-2, .col-md-2, .col-lg-2 { width: 16.66666667%; }
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3 { width: 25%; }
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4 { width: 33.33333333%; }
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5 { width: 41.66666667%; }
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6 { width: 50%; }
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7 { width: 58.33333333%; }
.col-xs-8, .col-sm-8, .col-md-8, .col-lg-8 { width: 66.66666667%; }
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9 { width: 75%; }
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10 { width: 83.33333333%; }
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11 { width: 91.66666667%; }
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { width: 100%; }

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
    .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
    .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
    .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
}

/* ==========================================
 * Utilities
 * ========================================== */
.clearfix::before,
.clearfix::after {
    display: table;
    content: " ";
}
.clearfix::after {
    clear: both;
}

.pull-left {
    float: left !important;
}
.pull-right {
    float: right !important;
}

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.text-muted {
    color: #777;
}

.hidden {
    display: none !important;
}
.visible {
    display: block !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile visibility */
.mobile-only-brand { display: flex; align-items: center; }
.mobile-only-nav { display: none; }

@media (max-width: 1024px) {
    .mobile-only-nav { display: block; }
}

/* ==========================================
 * Buttons
 * ========================================== */
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}
.btn:hover,
.btn:focus {
    outline: 0;
    text-decoration: none;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.btn-success {
    color: #fff;
    background-color: var(--manage-color);
    border-color: var(--manage-color);
}
.btn-success:hover,
.btn-success:focus {
    color: #fff;
    background-color: #1a7fe8;
    border-color: #1a7fe8;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
    background-color: transparent;
    border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================
 * Forms
 * ========================================== */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ==========================================
 * Tables
 * ========================================== */
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

.table-bordered {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

/* ==========================================
 * Navbar
 * ========================================== */
.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.navbar::before,
.navbar::after {
    display: table;
    content: " ";
}
.navbar::after {
    clear: both;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-width: 0 0 1px;
}

.navbar-inverse {
    background-color: #25282a;
    border-color: #25282a;
}
.navbar-inverse .navbar-brand {
    color: #9d9d9d;
}
.navbar.navbar-inverse.navbar-fixed-top {
    min-height: 66px;
}

/* Mobile Only Brand */
.mobile-only-brand {
    float: left;
}
.mobile-only-brand .nav-header {
    float: left;
    padding: 0;
}
.mobile-only-brand .logo-wrap {
    padding: 15px;
    padding-left: 15px;
}
.mobile-only-brand .logo-wrap a {
    display: inline-block;
    vertical-align: top;
    max-width: 160px;
    font-size: 1.8em;
    color: #fff;
}
.mobile-only-brand .logo-wrap a img {
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: top;
    max-height: 40px;
}
.brand-img {
    max-height: 40px;
    width: auto;
}

/* Toggle Nav Button - layout.css에서 관리 */

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav::before,
.nav::after {
    display: table;
    content: " ";
}
.nav::after {
    clear: both;
}
.nav > li {
    position: relative;
    display: block;
}
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eee;
}

.navbar-nav {
    margin: 7.5px -15px;
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}

.navbar-right {
    float: right !important;
}

.nav-header {
    display: block;
    padding: 3px 15px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.42857143;
    color: #777;
    text-transform: uppercase;
}

/* ==========================================
 * Panels
 * ========================================== */
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-body {
    padding: 15px;
}
.panel-body::before,
.panel-body::after {
    display: table;
    content: " ";
}
.panel-body::after {
    clear: both;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel-default {
    border-color: #ddd;
}
.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-primary {
    border-color: #337ab7;
}
.panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

/* ==========================================
 * Modals
 * ========================================== */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}
.modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-header::before,
.modal-header::after {
    display: table;
    content: " ";
}
.modal-header::after {
    clear: both;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer::before,
.modal-footer::after {
    display: table;
    content: " ";
}
.modal-footer::after {
    clear: both;
}
.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}

/* Close button */
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

/* ==========================================
 * Labels & Badges
 * ========================================== */
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label-default {
    background-color: #777;
}
.label-primary {
    background-color: #337ab7;
}
.label-success {
    background-color: #5cb85c;
}
.label-info {
    background-color: #5bc0de;
}
.label-warning {
    background-color: #f0ad4e;
}
.label-danger {
    background-color: #d9534f;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}

/* ==========================================
 * Alerts
 * ========================================== */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* ==========================================
 * Dropdowns
 * ========================================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.open > .dropdown-menu {
    display: block;
}

/* ==========================================
 * Sidebar (Fixed Left)
 * ========================================== */
.fixed-sidebar-left {
    position: fixed;
    top: 80px !important; /* navbar 높이(80px)에 맞춤 */
    left: 0;
    width: 225px;
    height: calc(100% - 80px);
    background-color: #323337;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s ease;
}
.fixed-sidebar-left .right-nav-text {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.side-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    height: 100%;
    width: 100%;
}
.side-nav > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 225px;
}
.side-nav > li > a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}
.side-nav > li > a:hover {
    background-color: rgba(255,255,255,0.1);
}
.side-nav > li > a.active {
    background-color: rgba(33, 33, 33, 0.05);
}
.side-nav > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: #fff; /* 2Depth 배경 화이트 */
}
.side-nav > li.active > ul {
    display: block;
}
.side-nav > li > ul > li > a {
    display: block;
    padding: 15px 15px 15px 44px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
}
.side-nav > li > ul > li > a:hover {
    color: var(--manage-color);
    background-color: rgba(255,255,255,0.05);
}

/* navigation-header 여백 제거 - 비어있으므로 숨김 */
.navigation-header {
    padding: 0 !important;
    margin: 0 !important;
    display: none !important; /* 비어있는 영역 숨김 */
}
.navigation-header > span {
    display: none !important;
}
.navigation-header > i {
    display: none !important;
}

/* side-nav 상단 여백 제거 */
.side-nav {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.side-nav > li:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 전체 펼침/닫힘 버튼 스타일 */
.admin-tree-controls {
    display: flex;
    padding: 5px 15px;
    gap: 0;
    align-items: center;
}
.btn-admin-expand-all {
    color: #5bc0de;
    font-size: 12px;
    padding: 5px 15px;
    text-decoration: none;
}
.btn-admin-collapse-all {
    color: #d9534f;
    font-size: 12px;
    padding: 5px 15px;
    text-decoration: none;
}
.admin-tree-controls i {
    margin-right: 5px;
}
.admin-tree-controls .divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #ccc;
}

/* ==========================================
 * Page Wrapper
 * ========================================== */
.page-wrapper {
    margin-left: 260px;
    transition: margin-left 0.3s ease;
}

/* 모바일 레이아웃은 style.css에서 관리 - 충돌 방지를 위해 제거됨 */

/* ==========================================
 * Wrapper & Theme Classes
 * ========================================== */
.wrapper {
    min-height: 100vh;
}

/* slide-nav-toggle 상태는 style.css에서 관리 - 충돌 방지를 위해 제거됨 */

/* ==========================================
 * Nicescroll Bar
 * ========================================== */
.nicescroll-bar {
    overflow: auto;
}
.nicescroll-bar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.nicescroll-bar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}
.nicescroll-bar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

/* ==========================================
 * Spacing Utilities
 * ========================================== */
.pa-0 { padding: 0 !important; }
.pa-5 { padding: 5px !important; }
.pa-10 { padding: 10px !important; }
.pa-15 { padding: 15px !important; }
.pa-20 { padding: 20px !important; }
.pa-30 { padding: 30px !important; }

/* Right Nav Text */
.right-nav-text {
    display: inline-block;
    vertical-align: middle;
}

.pl-0 { padding-left: 0 !important; }
.pl-5 { padding-left: 5px !important; }
.pl-10 { padding-left: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-30 { padding-left: 30px !important; }

.pr-0 { padding-right: 0 !important; }
.pr-5 { padding-right: 5px !important; }
.pr-10 { padding-right: 10px !important; }
.pr-15 { padding-right: 15px !important; }
.pr-20 { padding-right: 20px !important; }
.pr-30 { padding-right: 30px !important; }

.pt-0 { padding-top: 0 !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }

.ma-0 { margin: 0 !important; }
.ma-5 { margin: 5px !important; }
.ma-10 { margin: 10px !important; }
.ma-15 { margin: 15px !important; }
.ma-20 { margin: 20px !important; }

.ml-0 { margin-left: 0 !important; }
.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }

.mr-0 { margin-right: 0 !important; }
.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-20 { margin-right: 20px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* ==========================================
 * Collapse (for sidebar menus)
 * ========================================== */
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}

/* ==========================================
 * Caret (dropdown arrow)
 * ========================================== */
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* ==========================================
 * Logo Wrap
 * ========================================== */
.logo-wrap {
    padding: 15px;
}
.logo-wrap a {
    display: block;
}
.logo-wrap .brand-img {
    max-height: 40px;
}
.logo-wrap .brand-text {
    font-size: 18px;
    font-weight: 600;
}

/* Toggle Button - layout.css에서 관리 */

/* ==========================================
 * 상단 메뉴 (mobile-only-nav) - Bootstrap collapse 대체
 * ========================================== */
/* 1025px 이상에서 상단 메뉴 표시 */
@media (min-width: 1025px) {
    .mobile-only-nav {
        display: block !important;
        height: auto !important;
    }
}

/* 1024px 이하에서 상단 메뉴 숨김 (mobile-nav-open 시 표시) */
@media (max-width: 1024px) {
    .mobile-only-nav {
        position: absolute;
        top: -200px;
        left: 0;
        width: 100%;
        transition: top 0.3s ease;
    }
    .mobile-nav-open .mobile-only-nav {
        top: 66px !important;
    }
}

/* ==========================================
 * Summernote Editor Fullscreen Mode
 * ========================================== */
/* 서머노트 전체화면 모드 - 배경 폼이 보이지 않도록 */
.note-editor.note-frame.fullscreen,
.note-editor.note-airframe.fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    background-color: #fff !important;
}

.note-editor.note-frame.fullscreen .note-editing-area,
.note-editor.note-airframe.fullscreen .note-editing-area {
    height: calc(100% - 42px) !important;
    background-color: #fff !important;
}

.note-editor.note-frame.fullscreen .note-editable,
.note-editor.note-airframe.fullscreen .note-editable {
    height: 100% !important;
    background-color: #fff !important;
}

/* ==========================================
 * Footer
 * ========================================== */
footer {
    padding: 20px;
    text-align: center;
    color: #777;
}

