/* MAIN_BLOCK_TOTAL 기본 스타일 */
.MAIN_BLOCK_TOTAL {
    width: 100%;
    float: left;
    position: relative;
}

.MAIN_BLOCK_TOTAL .mbt_section {
    width: 100%;
    float: left;
    position: relative;
}

/* 관리자 모드 섹션 하이라이트 */
.MAIN_BLOCK_TOTAL.admin_main_section .mbt_section {
    position: relative;
}

.MAIN_BLOCK_TOTAL.admin_main_section .mbt_section::before {
    content: attr(data-category) ' / ' attr(data-skin);
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(240, 147, 251, 0.9);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    z-index: 100;
    border-radius: 0 0 4px 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.MAIN_BLOCK_TOTAL.admin_main_section .mbt_section:hover::before {
    opacity: 1;
}
