    body {
      font-family: '맑은 고딕', sans-serif;
      background-color: #ffffff;
	padding: 20px 0 20px 10px;  /* 상, 우, 하, 좌 */
	color: #222;
    }

    /* 전체 테두리를 위한 래퍼 */
	.page-wrapper {
	  width: 90%;
	  border: 1px dotted #bbb;
	  border-radius: 12px;
	  padding: 20px 50px;
	  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	  margin: 0;               /* 좌우 여백 제거 → 완전 좌측 정렬 */
	}


    .eval-box {
      border: 1px solid #ddd;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      background-color: #ffffff;
      max-width: 850px;
      margin: 0 auto;
      overflow: hidden;
    }

    .eval-title {
      text-align: center;
      font-size: 22px;
      font-weight: bold;
      padding: 20px 0;
      background-color: #1e5189;
      color: #fff;
    }

    .eval-desc {
      padding: 20px;
      font-size: 15px;
      line-height: 1.6;
      background-color: #f7f9fc;
    }

.criteria-box {
  width: 850px;
  margin: 20px auto 10px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  background-color: #f0f4fa;
  border-radius: 8px;
  overflow: visible;            /* 🔹 말줄임 방지 위해 hidden → visible */
  box-sizing: border-box;
}
	.criteria-title {
	  background-color: #1e5189;
	  color: #fff;
	  font-weight: bold;
	  padding: 12px 20px;
	  width: 100%;
	  box-sizing: border-box;
	  word-break: break-word;
	  white-space: normal;
	}


.criteria-desc {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  box-sizing: border-box;
  word-break: break-word;

  /* 줄바꿈 허용 및 말줄임 제거 */
  white-space: normal;        /* 줄바꿈 허용 */
  overflow: visible;          /* 넘침 허용 */
  text-overflow: unset;       /* 줄임표 제거 */

  /* column 레이아웃 제거 or 조절 */
  /* column-count: 2; */      /* ← 이 줄이 있으면 자동 줄바꿈이 제한됨 */
  /* column-gap: 20px; */
  
  width: 100%;
}

.criteria-desc,
.criteria-desc * {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: break-word !important;
  display: block !important;
  line-height: 1.6;
}


td, .cell-wrapper {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}


    .timer-wrapper {
      text-align: center;
      margin: 20px auto;
      font-size: 16px;
      font-weight: bold;
      color: #c00;
    }

    .image-section {
      display: block;
      width: 850px;
      margin: 20px auto;
      background-color: #fff;
      border-radius: 12px;
      padding-top: 10px;
    }

    table {
      width: 850px;
      margin: 0 auto;
      border-collapse: collapse;
      table-layout: fixed;
    }

	td {
	  width: 20%;
	  padding: 0; /* 이미지 간 간격 제거 */
	  text-align: center;
	}

	img {
	  width: 171px;   /* 244px × 0.7 */
	  height: 139px;  /* 198px × 0.7 */
	  cursor: default; /* 클릭해도 마우스 손모양 방지 */
	  transform: none !important; /* 확대 등 효과 제거 */
	  box-shadow: none !important;
	  border-radius: 0 !important;
	}

    img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .submit-button {
      display: none;
      margin: 30px auto;
      padding: 12px 24px;
      background-color: #1e5189;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .ca-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.5);
    }

    .ca-modal-content {
      background-color: #fff;
      padding: 20px 30px;
      border-radius: 8px;
      width: 300px;
      text-align: center;
      margin: 200px auto;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .ca-modal-content button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #1e5189;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

	  .radio-wrap {
		margin-top: 6px;
		text-align: center;
	  }

	  .radio-wrap input[type="radio"] {
		appearance: none;
		width: 20px;
		height: 20px;
		border: 1px solid #888;
		border-radius: 50%;
		outline: none;
		cursor: pointer;
		transition: all 0.2s ease;
		position: relative;
	  }

	  .radio-wrap input[type="radio"]:checked {
		background-color: #888;
	  }


	.radio-wrap input[type="radio"]::before {
	  content: '';
	  position: absolute;
	  width: 11px;
	  height: 11px;
	  background-color: white;
	  border-radius: 50%;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  display: none;
	}


	  .radio-wrap input[type="radio"]:checked::before {
		display: block;
	  }  


	/*상단탭*/
  .tab-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    margin: 20px 0 0 30px;
    width: fit-content;
    border-bottom: 2px solid #1e5189;
  }

  .tab-btn {
    padding: 10px 16px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #f5f5f5;
    color: #333;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
  }

  .tab-btn.active {
    background-color: #1e5189;
    color: white;
    border-color: #1e5189;
  }
