#load_log_board {
  margin-bottom: 40px;
  padding-right: 5px;
  font-size: 14px;
}

.profile-display {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.profile-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmt-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.input-area {
  display: flex;
  gap: 4px;
  flex-direction: column;
  width: 100%;
}
.input-area select, .input-area textarea {
  display: block;
  align-self: flex-start;
  font-size: inherit;
}
.input-area textarea {
  resize: vertical;
}
.input-area .item-content {
  padding: 16px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.input-area .input-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.input-area .item-name span.name {
  font-weight: bold;
  margin-right: 10px;
}
.input-area .item-name span.date {
  font-size: 0.8em;
  opacity: 0.6;
}

.ui-comment {
  margin-top: 10px;
  width: 100%;
}
.ui-comment .bo_vc_w .cmt-item {
  position: relative;
  width: calc(100% - 60px - 10px);
}
.ui-comment .bo_vc_w .cmt-item .reply-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: -24px;
  transform: scale(-1, -1);
}
.ui-comment .item-comment-box .cmt-item {
  width: 100%;
  left: -70px;
}
.ui-comment .item-comment-box .cmt-item .reply-icon {
  display: none;
}

.bo_vc_w {
  width: calc(100% + 10px + 60px);
}

.is-editing {
  display: none !important;
}

.ckbx-more + label {
  margin-bottom: 10px;
}
.ckbx-more ~ .cmt-collapse {
  display: none;
}
.ckbx-more:checked ~ .cmt-collapse {
  display: block;
}

.item-btn-area {
  display: flex;
  gap: 10px;
}

.modify_area textarea {
  display: none;
}

hr.divider {
  display: block;
  border: none;
  outline: none;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  margin-block: 20px;
}

.label-more {
  width: 100%;
  display: block;
  text-align: center;
}

#bo_w {
  margin-block: 20px 40px;
}

.char-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
}

.char-modal-mask:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.char-modal-wrap {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 600px;
  text-align: left;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  color: #333;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6) !important;
}

.char-modal-head {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.char-modal-head strong {
  font-size: 1.2em;
}

.char-modal-head .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.char-modal-body {
  height: 400px;
  overflow-y: auto;
}

.char-guide {
  font-size: 0.9em;
  text-align: right;
  margin-bottom: 5px;
  color: #666;
}

.char-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.char-table th, .char-table td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}

.char-table th {
  background-color: #f9f9f9;
  font-weight: bold;
  text-align: center;
}

.char-row {
  /* flex-related styles removed */
}

.char-row td {
  padding: 3px 5px;
}

.ui-btn-red {
  background: #c7254e;
  color: #fff;
  border: 0;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.frm_input {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  padding: 5px;
  height: 30px;
  line-height: 30px;
  box-sizing: border-box;
}

.char-row .frm_input[name="char_order[]"] {
  width: 40px; /* Adjust width for order field */
}