/* 게시판 Admin */
.ba-header {
    padding:15px;
    text-align:right;
    display:flex;
    justify-content: space-between;
}

.ba-list-item{
    padding:15px;
    border-bottom:1px solid var(--border-color);
    display:flex;
    justify-content: space-between;
}
.ba-list-title{
    font-weight:bold;
}
.ba-column{
    display:flex;
    justify-content: flex-start;
}
.ba-column>*{
    width:150px;
}
.ba-cat {
    position: relative;
}
.ba-cat-list{
    width:100%;
    padding:10px;
    border:1px solid var(--border-color);
    margin-bottom:10px;
    display:flex;
    justify-content: space-between;
    backgrund-color:#ffffff;
}
.ba-cat-list input {
    border:0;
}
.ba-drag{
    color:silver;
    cursor:pointer;
    padding:3px 5px;
}
.ba-drag:hover{
    background-color:var(--shade);
}
.ba-editor {
    max-width:800px;
    margin:0 auto;
    border:1px solid var(--border-color);
}

.sticky {
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  max-width:100%;
  z-index:999999;
}

@media (max-width:769px) {
    .ba-list-item {
        flex-direction: column;
    }
    .ba-column{
        flex-direction: row;
        flex-wrap: wrap;
    }
}
