.observe-modal-layout {
    width:100%;
    padding:10px; /* 카드와 바깥 보라색 padding */
    background:#e1e1eb;
    border-radius: 0 0 10px 10px;
    box-sizing:border-box;
    display: flex; /* 자식 요소들을 Flexbox로 관리 */
    flex-direction: column; /* 자식 요소들을 수직 방향으로 정렬 */
    min-height: 0;
}

.observe-modal-content {
    width:100%;
    flex-grow: 1;
    padding:0 12px 12px 12px;
    border-radius: 10px;
    box-sizing:border-box;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.observe-modal-system {
    width:85vw;
    max-height: 80vh;
    max-width: 350px;
    height:auto;
    border-radius:10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background: #e1e1eb; /* 하단 콘텐츠 영역과 색상 통일 */
}

.observe-modal-header {
    width:100%;
    height:50px;
    background:#1E3169;
    border-radius: 10px 10px 0 0;
    align-items: center; /* h2.title 수직 가운데 정렬 */
    padding-left: 18px;
    box-sizing: border-box;
    flex-shrink: 0; /* 헤더가 줄어들지 않도록 함 */
    display: flex;
    justify-content: center;
}

h2.title {
    font-size:18px;
    color:#fff;
    font-weight:700;
}


.gb-observe-box {
    background: white;
    overflow-y: auto;
    border-radius: 10px;
}