.dashboard_title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


.edit_button {
    margin-right: 20px;
}


.head_underline {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}


/* 드롭 존 영역 스타일 */
.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 30px 20px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    display: block;
    color: #666;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: #007bff;
    background-color: #e9f5ff;
    color: #007bff;
}

/* 드래그 시 적용될 클래스 (JS에서 classList.add('dragover')로 처리) */
.drop-zone.dragover {
    border-color: #007bff;
    background-color: #e0f2ff;
}

/* 업로드 안내 문구 스타일 */
.drop-zone p {
    margin: 0;
    font-size: 15px;
}

/* 이미지 미리보기 */
#preview img {
    max-height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
}


.notice_list_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.notice_list_title_sub {
    color : #6A6E83
}

.notice_view_thumbnail {
    width : 100%;
}

.notice-title_area_wrap {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}


.back_button_area {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}




    /* 에디터 컨테이너에 명시적 스타일 추가 */
    #editor-container {
        height: 400px;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .ql-editor {
        height: 350px;
        overflow-y: auto;
    }
    
    .ql-editor img {
        max-width: 100%;
        height: auto;
    }

.add_guide_area {
  display: flex;
  justify-content: flex-first;
  margin-bottom: 1rem;
}

.edit_guide_area {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}