  #inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  #inquiry-modal .modal-content {
    background: var(--color-white);
    width: 600px;
    margin: 80px auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  #sit_inf_company {
    display: flex;
    border-top: 2px solid var(--color-primary);
    border-bottom: 1px solid var(--theme-border-color);
    font-size: 1rem;
  }

  #sit_inf_company > .mail-wrap {
    flex: 1;
    padding: 35px 50px;
  }

  #sit_inf_company .mail-wrap input[type='text'],
  #sit_inf_company .mail-wrap textarea {
    display: block;
    width: 100%;
    padding: 0 10px;
    background: #f9f9f9;
    box-sizing: border-box;
    border: 1px solid var(--theme-border-color);
  }

  #sit_inf_company .mail-wrap textarea {
    height: 230px;
    padding: 15px;
    line-height: 1.5;
    font-size: 1rem;
  }

  #sit_inf_company .mail-wrap table th,
  #sit_inf_company .mail-wrap table td {
    height: 44px;
    line-height: 44px;
  }

  #sit_inf_company .mail-wrap form button[type='submit'] {
    display: block;
    width: 100%;
    height: 32px;
    margin-top: 10px;
    padding-left: 30px;
    background: var(--color-primary);
    border: 0;
    color: #fff;
  }

  #sit_inf_company .mail-wrap form button[type='submit'] i {
    font-size: 17px;
    margin-right: 3px;
  }

  .close-btn {
    cursor: pointer;
  }

  @media screen and (max-width: 640px) {
    #inquiry-modal .modal-content {
      width: 95%;
	}
	#sit_inf_company > .mail-wrap {
		padding: 35px 30px;
	}
  }


/* 제품문의 리스트 */
  #inquiry-list {
    padding: var(--space-lg) var(--space-sm);
  }
  #inquiry-list h3 {
    margin-top: 30px;
    height: 50px;
    font-size: var(--font-md);
    font-weight: 500;
    line-height: 2.5;
  }

  #inquiry-list  thead {
    margin-bottom: var(--space-sm);
    border-top: 2px solid #1b1b1b;
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-bg-lighter);
    font-size: var(--font-md);
    font-weight: 500;
    text-align: center;
    line-height: 2.5;
  }

  #inquiry-list  thead th,
  #inquiry-list  thead td {
	padding: 0;
  }
  #inquiry-list  thead th {
	font-weight: 400;
  }

  /* 수정/삭제 버튼 스타일 */
  .action-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  /* 버튼 기본 스타일 */
  .action-buttons button {
    background-color: #fff; /* 배경색을 흰색으로 설정 */
    color: #000; /* 텍스트 색상을 검정색으로 설정 */
    border: 1px solid #000 !important; /* 검정색 테두리 */
    border-radius: 5px; /* 버튼 테두리 둥글게 */
    padding: 4px 16px; /* 여백 설정 */
    cursor: pointer; /* 커서 모양을 손 모양으로 변경 */
    font-size: 12px; /* 글자 크기 설정 */
    transition: all 0.3s ease; /* 애니메이션 효과 */
  }

  /* 버튼 호버 시 색상 변화 */
  .action-buttons button:hover {
    background-color: #f0f0f0; /* 배경색을 연한 회색으로 변경 */
    color: #007bff; /* 텍스트 색상 변경 */
    transform: scale(1.05); /* 버튼 확대 효과 */
  }

  /* 수정 버튼 */
  .action-buttons button.edit-btn {
    background-color: #28a745;
    color: white;
  }

  .action-buttons button.edit-btn:hover {
    background-color: #218838;
  }

  /* 삭제 버튼 */
  .action-buttons button.delete-btn {
    background-color: #dc3545;
    color: white;
  }

  .action-buttons button.delete-btn:hover {
    background-color: #c82333;
  }

  /* 답글 버튼 */
  .action-buttons button.reply-btn {
    background-color: #ffc107;
    color: white;
  }

  .action-buttons button.reply-btn:hover {
    background-color: #e0a800;
  }

  /* 본인 글만 수정/삭제 버튼이 보이도록 */
  .action-buttons {
    /*display: none;*/
  }

  /* 본인 글일 경우 버튼을 보이도록 */
  .content-owner .action-buttons {
    display: block;
  }

  /* 페이징 스타일 */
  .pagination {
    text-align: center;
    margin-top: 20px;
  }

  .pagination .page-link {
    margin: 0 5px;
    text-decoration: none;
    color: #007bff;
  }

  .pagination .active {
    font-weight: bold;
    color: #0056b3;
  }

  .na-hicon {
    position: relative;
    top: 4px;
    float: left;
    width: 12px;
    min-width: 12px;
    height: 12px;
    line-height: 12px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: left top;
    font-size: 1px;
    padding: 0;
    margin: 0 5px 0 0;
}
.na-reply {
    background-image: url('/nariya/img/icon_reply.gif');
}