﻿/* command-pannel */
.command-pannel {
    min-width: 232px;
    width: 232px;
    height: 100%;
    background-color: #E7EDF4;
    border-left: 1px solid var(--doov-gray-400);
    overflow: auto;
}

.command-pannel::-webkit-scrollbar {
    display: none;
}

.command-pannel .ctr {
    padding: 0px 16px 16px;
}

.command-pannel .ctr:not(:last-child) {
    border-bottom: 1px solid var(--doov-gray-400);
}

.command-pannel .ctr .ctr-tit {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
}

.command-pannel .ctr .ctr-tit p {
    color: var(--doov-gray-600);
    font-size: 13px;
    font-weight: 600;
}

.command-pannel .ctr .ctr-cont:first-child {
    padding-top: 16px;
}

.command-pannel .ctr .ctr-cont > *:not(:last-child) {
    margin-bottom: 8px;
}

.command-pannel .ctr:has(.tbl-wrp) {
    padding: 0px;
}

.command-pannel .ctr:has(.tbl-wrp) .ctr-tit {
    padding: 0 16px;
}

.command-pannel .ctr:has(.tbl-wrp) .ctr-cont {
    padding: 0px 16px 16px;
}

.command-pannel .ctr:has(.tbl-wrp) .tbl-wrp + .ctr-cont {
    padding: 16px;
}

/*annotation editor(모달 결함내역 테이블)*/
#annotation_editor_panel {
    height: calc(100% - 36px) !important;
}
#annotation_editor .row {
    margin: 0px;
    flex-wrap: nowrap;
    overflow: hidden;
}
#annotation_editor .row span {
    flex: unset;
    padding: 0px 8px;
    margin: 0px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#annotation_editor .row span:has(input) {
    padding: 0px;
}
#annotation_editor .row span:nth-child(2) input {
    width: 16px;
    height: 16px;
    accent-color: var(--doov-purple-500);
}
#annotation_editor .row span:nth-child(3) input,
#annotation_editor .row span:nth-child(4) input{
    width: 100%;
    height: 100%;
    padding: 0px 8px;
    background-color: #C9D3E0;
    outline: none;
    border: none;
    box-shadow: none;
}
#annotation_editor .row span:nth-child(3) input:hover,
#annotation_editor .row span:nth-child(4) input:hover {
    background-color: #FFFFFF4D;
}
#annotation_editor .row span:nth-child(3) input:focus,
#annotation_editor .row span:nth-child(4) input:focus {
    background-color: #fff;
}
#annotation_editor .row span:first-child {
    width: 40px;
}
#annotation_editor .row span:nth-child(2) {
    width: 48px;
}
#annotation_editor .row span:nth-child(3) {
    width: 48px;
}
#annotation_editor .row span:nth-child(4) {
    flex: 1;
}
#annotation_editor_header {
    height: 24px;
    border-top: 1px solid var(--doov-gray-400);
    border-bottom: 1px solid var(--doov-gray-400);
    position: sticky;
    top: 0px;
    left: 0px;
}
#annotation_editor_header span {
    height: 24px;
    background-color: #D7E0EB !important;
    font-size: 11px;
    font-weight: 600;
    color: var(--doov-gray-700);
}
#annotation_editor_header span:not(:last-child) {
    border-right: 1px solid var(--doov-gray-400);
}
[id^="ae_region_"] {
    height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
[id^="ae_region_"] span {
    height: 40px;
}
[id^="ae_region_"] span:last-child {
    display: flex;
    align-items: center;
}
[id^="ae_region_"] span:last-child button {
    width: 32px;
}