li {
  list-style: none;
}

.cs-container {
  max-width: 1200px;
  min-height: 500px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  gap: 24px;
  position: relative;
}
.cs-sidebar {
  width: 200px;
  height: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
  overflow: hidden;
}
.cs-sidebar__title {
  padding: 24px 0;
  text-align: center;
  background-color: #1c4b84;
  font-size: 18px;
  color: #fff;
}
.cs-sidebar__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-tab {
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #e1e1e1;
}
.cs-sidebar__tabs li a {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding: 0 20px;
  height: 63px;
  line-height: 63px;
}

.cs-sidebar__tabs li:last-child {
  border-bottom: none;
}
.cs-sidebar__tabs li a:hover {
  background-color: #f5f5f5;
}

.cs-tab-active {
  color: #1c4b84;
  font-weight: bold;
}

.cs-content {
  flex: 1;
}
.notice_header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #d1d1d1;
  margin-bottom: 10px;
  /* padding: 10px 0 0 0; */
}
.es-cart-breadcrumb {
  font-size: 12px;
  color: #858f9a;
  float: right;
  margin-top: 10px;
}
.es-cart-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.es-cart-breadcrumb .sep {
  margin: 0 6px;
  color: #aaa;
}

.cs-heading {
  margin-top: 0;
  font-size: 22px;
  padding: 0 0 10px 0;
}
.cs-heading span {
  font-size: 15px;
  margin-left: 8px;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.cs-heading span::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -1px;
  right: 1px;
  background: #c0deff75;
  z-index: -1;
  height: 8px;
}

.cs-panel--active {
  display: block;
}

.pw_noti {
  border: 1px solid #d1d1d1;
  padding: 15px;
  text-align: center;
  line-height: 1.5;
}
.password {
  width: 200px;
  border: 1px solid #d1d1d1;
  height: 35px;
  border-radius: 3px;
  margin-left: 20px;
}
.pw_btn {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 30px;
}

.pw_button {
  min-width: 170px;
  padding: 10px 0;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 15px;
  cursor: pointer;
}
.passwordOK {
  background: #1c4b84;
  color: #fff;
}
.passwordRESET {
  background: #6b6f76;
  color: #fff;
}
.cs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  text-align: left;
}
.cs-table th {
  padding: 10px 5px;
  text-align: center;
  font-weight: 500;
}
.cs-table td {
  padding: 10px 5px;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.qna-lock {
  margin-right: 4px;
  font-size: 13px;
  color: #6b7480;
  /* vertical-align: middle; */
}
.cs-table .abbre {
  display: inline-block;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  text-decoration: none;
}
.c_name {
  vertical-align: middle;
  width: 300px;
  margin-left: 50px;
}
.c_name a {
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: flex-start; */
  text-decoration: none;
  text-align: center;
}

/* .c_name .c_title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #858585;
  line-height: 1.4;
  height: 1.4em;
  font-size: 14px;
  text-align: left;
} */

.cs-table thead th {
  background: #e9f1fc;
  font-weight: bold;
}

.status {
  display: inline-block;
  width: 60px;
  padding: 3px 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.status-wait {
  background-color: #9d9d9d;
}

.status-done {
  background-color: #4e7ccf;
}
.noti a {
  text-align: left;
}

.cs-search {
  width: 500px;
  margin: 40px auto;
  display: flex;
  gap: 8px;
}
.cs-search select,
.cs-search input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.cs-search select {
  width: 100px;
}
.cs-search input {
  width: 300px;
}

.cs-search button {
  width: 100px;
  padding: 8px 16px;
  background: #1f4382;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cs-pagination {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  text-align: center;
  width: 170px;
  margin: 60px auto 0 auto;
}
.cs-pagination a {
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: none;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  line-height: 28px;
}
.cs-pagination .active {
  background: #1c4b84;
  color: #fff;
  font-weight: 600;
}

.cs_btn {
  display: flex;
  justify-content: space-between;
  width: 305px;
  margin: 0 auto 10px auto;
  float: right;
}
.review_w {
  float: right;
  width: 150px;
}
.review_w a {
  width: 100%;
  height: 35px;
  background: #1c4b84;
  color: #fff;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  margin-bottom: 10px;
}

.writing,
.myquestion {
  width: 150px;
  display: block;
}

.writing a,
.myquestion a {
  width: 100%;
  height: 35px;
  background: #1c4b84;
  color: #fff;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 35px;
}
.myquestion a {
  background-color: #587bba;
}
.page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin: 50px 0;
}

.detail-container {
  max-width: 976px;
  margin: 0 auto;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.detail-table th,
.detail-table td {
  border-bottom: 1px solid #ddd;
  padding: 12px 16px;
}
.detail-table thead th {
  width: 130px;
  background: #e9f1fc;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ddd;
}

.detail-table thead td {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  vertical-align: middle;
}


.td-course {
  position: relative;
  padding-right: 130px; 
}


.rv-btn-apply {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 14px;
  font-size: 13px;
  background: #1c4b84;
  color: #fff;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  border: none;    
  outline: none;       
  box-shadow: none;   
}



.detail-table tbody th {
  background: #e9f1fc;
  padding: 10px 12px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ddd;
  position: relative;
}

.detail-table tbody td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.detail-content {
  line-height: 1.5;
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
  padding: 10px 0;
}
.detail-content p {
  margin: 0 0 16px;
}
.detail-image {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #eee;
  margin: 16px 0;
}

.review-content,
.inquiry-content {
  line-height: 1.5;
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
  padding: 10px;
  border-bottom: 1px solid #d4d4d4;
}
.review-content p,
.inquiry-content p {
  margin: 0 0 30px;
}
/* qna-content*/
.qna-content {
  margin-top: 30px;
  border-top: 2px solid #000;
  font-size: 15px;
  color: #222;
}

.qna-box {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  line-height: 1.6;
}

.qna-box.q {
  background: #f9f9f9;
}

.qna-box.a {
  background: #fffdf7;
  border-left: 4px solid #1c4b84;
  position: relative;
}

.qna_manager {
  display: inline-block;
  font-weight: bold;
  color: #1c4b84;
  margin-bottom: 10px;
}

.qna-text p {
  margin: 0 0 10px;
}

.qna-date {
  display: block;
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

.detail-footer {
  text-align: center;
  margin-top: 24px;
}

.btn-back {
  display: inline-block;
  padding: 10px 24px;
  background: #1f4382;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.btn-back:hover {
  background: #163761;
}

.noti_txt {
  border: 1px solid #cdcdcd;
  padding: 15px;
}
.noti_txt ol {
  text-align: center;
  font-weight: bold;
}

/* ?? ?? */
.top-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin: 15px 0;
}

.top-actions .btn {
  padding: 9px 16px;
  border: none;
  background: #1c4b84;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
}

.top-actions .btn:active {
  transform: translateY(1px);
}

/* ? */
.table_wrap {
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  overflow: hidden;
}
.table_wrap table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table_wrap thead th {
  background: #29558b20;
  border-bottom: 1px solid #e6e6e6;
  padding: 12px 8px;
  font-weight: 700;
  font-size: 14px;
  color: #111;
}
.table_wrap tbody td {
  padding: 12px 8px;
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
}
.table_wrap tbody tr:first-child td {
  border-top: none;
}

/* ?? ?? */
.col-check {
  width: 48px;
  text-align: center;
}
.col-no {
  width: 100px;
  text-align: center;
}
.col-title {
  width: auto;
}
.col-period {
  width: 220px;
  text-align: center;
}
.col-fee {
  width: 160px;
  text-align: center;
}

/* ? ?? */
.empty {
  text-align: center;
  color: #666;
  padding: 42px 8px;
  font-size: 15px;
}

/* ?? ?? */
.year-top {
  text-align: center;
  padding: 16px 0;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #fff;
}
.year-top strong {
  font-size: 16px;
  font-weight: 700;
}
.year-top .small {
  font-size: 13px;
  color: #d5322f;
  margin-left: 4px;
}
.year-top .sub {
  margin-top: 6px;
  font-size: 13px;
  color: #333;
}
.year-top .sub a {
  color: #0044cc;
  text-decoration: underline;
}

/* ??? */
.year-select-box table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  background: #fff;
}
.year-select-box td {
  border: 1px solid #ddd;
  padding: 14px;
  font-size: 14px;
  text-align: center;
}
.year-select-box .title {
  background: #f5f5f5;
  font-weight: 600;
}
.year-select-box .input select {
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

/* ???? ?? ?? */

/* dim */
.qna-unlock-layer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.qna-unlock-layer.show {
  display: block;
}

.qna-unlock-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* dialog */
.qna-unlock-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  font-family: inherit;
}

/* close button */
.qna-unlock-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  color: #7a808a;
}

/* icon */
.qna-unlock-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
  margin: 10px auto;
}

.qna-unlock-icon i {
  font-size: 20px;
  color: #1c4b84;
}

/* texts */
.qna-unlock-title {
  font-size: 18px;
  margin: 0 0 6px;
  text-align: center;
}

.qna-unlock-desc {
  font-size: 13px;
  color: #666f7a;
  margin: 0 0 14px;
  text-align: center;
}

/* input */
.qna-unlock-input {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #d2d6e0;
  font-size: 13px;
  box-sizing: border-box;
}

.qna-unlock-input:focus {
  outline: none;
  border-color: #277cff;
  box-shadow: 0 0 0 2px rgba(39, 124, 255, 0.18);
}

/* error */
.qna-unlock-error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #d32f2f;
}

/* buttons */
.qna-unlock-btns {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.qna-unlock-btn {
  min-width: 70px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid #d2d6e0;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
}

.qna-unlock-cancel {
  color: #444b55;
}

.qna-unlock-ok {
  background: #1c4b84;
  border-color: #1c4b84;
  color: #fff;
}

/*============= wriring/review_write/contact_us ===========*/
.esf-wrap {
  max-width: 900px;
  margin: 32px auto;
}
.esf-header {
  padding: 18px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid #e6e8ec;
}
.esf-title {
  font-size: 342x;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.esf-sub {
  margin-top: 5px;
  color: #6b7480;
  font-size: 15px;
}
.esf-form {
  padding: 16px;
}

/* Form atoms */
.esf-group {
  margin-bottom: 18px;
}
.esf-group.no-margin {
  margin-bottom: 0 !important;
}
.esf-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.esf-req {
  color: #d63b3b;
}
.esf-hint {
  font-size: 12px;
  color: #6b7480;
  margin-top: 6px;
}

/* Inputs */
.esf-input,
.esf-textarea,
.esf-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd6e4;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  background: #fff;
}
.esf-input:focus,
.esf-textarea:focus,
.esf-select:focus {
  border-color: #1c4b84;
  box-shadow: 0 0 0 3px rgba(39, 124, 255, 0.2);
}
.esf-input[readonly] {
  background: #f2f4f7;
  color: #555;
  cursor: not-allowed;
}
.esf-textarea {
  resize: none;
}

/* Inline helpers */
.esf-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.esf-inline .esf-sm {
  max-width: 120px;
}
.esf-suffix {
  font-size: 14px;
  color: #333;
}

/* mm:ss range */
.esf-range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.esf-mmss {
  display: flex;
  align-items: center;
}
.esf-mmss .esf-xs {
  width: 84px;
}
.esf-colon {
  padding: 0 6px;
  color: #555;
}
.esf-tilde {
  padding: 0 6px;
  color: #555;
}

/* Dropzone */
.esf-dropzone {
  border: 1px dashed #bfc9da;
  border-radius: 12px;
  padding: 30px 18px 18px 18px;
  text-align: center;
  background: #fafcff;
}
.esf-drop-trigger {
  display: block;
  cursor: pointer;
  font-size: 14px;
}
.esf-drop-trigger strong {
  color: #1c4b84;
}
.esf-dz-sub {
  display: block;
  margin-top: 4px;
  color: #6b7480;
  font-size: 12px;
}
.esf-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.esf-file-name {
  margin-top: 10px;
  font-size: 13px;
  color: #2a3240;
}

/* Switch (toggle) */
.esf-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.esf-switch input {
  position: absolute;
  opacity: 0;
}
.esf-slider {
  width: 46px;
  height: 26px;
  background: #cfd6e4;
  border-radius: 999px;
  position: relative;
  transition: 0.2s;
}
.esf-slider::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
.esf-switch input:checked + .esf-slider {
  background: #1c4b84;
}
.esf-switch input:checked + .esf-slider::after {
  transform: translateX(20px);
}
.esf-switch-text {
  font-size: 14px;
}

/* Stars (for ÈÄ±â) */
.esf-stars {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 4px;
  font-size: 28px;
  cursor: pointer;
}
.esf-stars span {
  color: #ccc;
  transition: color 0.2s;
}
.esf-stars span.esf-active {
  color: #ffd700;
}

/* Action bar + buttons */
.esf-actionbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 0;
}
.esf-btn {
  min-width: 150px;
  padding: 11px 16px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}
.esf-btn.primary {
  background: #1c4b84;
  color: #fff;
}
.esf-btn.primary:hover {
  background: #163a67;
}
.esf-btn.ghost {
  background: #fff;
  border-color: #cfd6e4;
  color: #2a3240;
}
/*=============// wriring/review_write/contact_us ===========*/
