@charset "utf-8";

@import "./button/basic-button.css?v=1.0";
@import "./datePicker/datePicker.css?v=1.0";
@import "./input/basic-input.css?v=1.0";
@import "./select/basic-select.css?v=1.0";

@import "./01_login/login.css?v=1.0";
@import "./02_user_info/user_info.css?v=1.0";
@import "./04_consult_info/consult_info.css?v=1.0";
@import "./05_sign_up_service/sign_up_service.css?v=1.0";
@import "./06_service_log/service_log.css?v=1.0";
@import "./07_customer_service/customer_service.css?v=1.0";
@import "./08_board/board.css?v=1.0";
@import "./09_e-call/e-call.css?v=1.0";
@import "./11_my_info/my_info.css?v=1.0";
@import "./swiper.css?v=1.0";
/* 위 css 변경시 버전 변경 */

/* 테이블 공통 스타일 */
.row-table-head,
.row-table-body,
.ui-jqgrid-htable,
.ui-jqgrid-btable  {
  width: 100% !important;
  /*   JHH */
  table-layout: fixed;
}

/* 테이블 헤더 스타일 */
.row-table-head,
.ui-jqgrid-htable {
  background: #F7F7F7;
}

.row-table-head th,
.ui-jqgrid-htable th  {
  /* padding: 14px 0 12px 20px; JHH 가운데 정렬로 인한 죄측 제거*/
  padding: 14px 0 12px 0;
  color: var(--gray-60);
  background-color: var(--gray-10);
  border-right: 1px solid var(--gray-20);
/* JHH  font-size: 16px; */
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
}

.row-table-head th:last-child ,
.ui-jqgrid-htable th:last-child {
  border-right: none;
}

.row-table-head th:first-child,
.ui-jqgrid-htable th:first-child  {
  border-radius: 4px 0 0 0;
}

.row-table-head th:last-child ,
.ui-jqgrid-htable th:last-child {
  border-radius: 0 4px 0 0;
}

/* 테이블 바디 스타일 */
.row-table-body td,
.ui-jqgrid-btable td  {
  padding: 13px 5px 13px 20px;  /* JHH 우측 paddding 5추가  */
  color: var(--gray-90);
  background-color: #FFF;
  border-bottom: 1px solid var(--gray-20);
  border-right: 1px solid var(--gray-20);
  font-size: 14px;   /* JHH font-size: 16px; */
  font-weight: 400;
/*  JHH line-height: 24px; */
  line-height: 16px;
}

.row-table-body td:last-child,
.ui-jqgrid-btable td:last-child  {
  border-right: none;
}

.table-box table tr:hover td {
  background-color: var(--gray-20);
  cursor: pointer;
}

/* pagination 스타일 */
.pagination {
  /* margin-top: 36px; */
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 34px;
}

.pagination .arrow-btn-box {
  display: flex;
  align-items: center;
}

.pagination .prev,
.pagination .next {
  align-content: center;
}

.pagination img {
  width: 36px;
}

.pagination-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.pagination-btn-box .pagination-num span {
  text-align: center;
  color: var(--gray-40);
}

.pagination-btn-box .pagination-num span.active {
  color: var(--gray-90);
}

.pagination-btn-box .pagination-num span:hover {
  color: var(--gray-90);
}

/* 인풋 공통스타일 */
.inquiry-form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.inquiry-form fieldset {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.inquiry-form fieldset .input-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.inquiry-form fieldset .input-group label {
  color: var(--gray-60);
  margin-left: 4px;
}

.inquiry-form .button-group {
  display: flex;
  gap: 8px;
}

/***** 토스트 팝업 *****/
.toast-popup {
  width: calc(100% - 345px);
  position: fixed;
  top: 70px;
  left: 310px;
  z-index: 997;
  padding: 17px 20px;
  color: var(--gray-90);
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.toast-popup img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.toast-popup p {
  margin-left: 12px;
  line-height: 26px;
}

.toast-popup.success {
  background-color: var(--etc-green-10);
  border: 1px solid var(--etc-green);
}

.toast-popup.notice {
  background-color: var(--etc-yellow-10);
  border: 1px solid var(--etc-yellow);
}

.toast-popup.warning {
  background-color: var(--etc-red-10);
  border: 1px solid var(--toyota-red);
}

.mic_popup {
  background-color: var(--toyota-black);
  color: #fff;
}

.mic_popup p:last-child {
  margin-left: auto;
}

.popup-container {
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.popup-container.active {
  display: block;
}

/* Common 팝업 스타일 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.common-popup,
.table-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  border-radius: 8px;
  background-color: #fff;
}

.common-popup {
  width: 600px;
  padding: 50px 0 40px 0;
}

.common-popup .popup-text {
  text-align: center;
  padding: 16px 0 36px 0;
}

.common-popup .popup-title p {
  display: flex;
  width: 100%;
  justify-content: center;
}

.common-popup .popup-title p img {
  display: inline-block;
  margin-right: 6px;
  margin-top:-1px;
}

.common-popup .popup-text p {
  color: var(--gray-60);
  font-weight: 700;
}

.common-popup .btn-box {
  display: flex;
  justify-content: center;
  gap: 14px;
}


/* 테이블 팝업 table popup */
.table-popup {
  width: 940px;
}

.table-popup-w700 {
  width: 700px;
}

.popup-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px;
  border-bottom: 1px solid var(--gray-20);
}

.popup-title-box h2 {
  padding-top: 4px;
}

.table-popup .popup-form {
  padding: 20px 40px;
  border-bottom: 1px solid var(--gray-20);
}

.table-popup .popup-form form {
  display: flex;
  justify-content: space-between;
}

.table-popup .popup-form .form-box {
  display: flex;
  gap: 20px;
}

.table-popup .popup-form .form-box label {
  display: block;
  margin: 0 0 7px 5px;
  color: var(--gray-60);
}

.table-popup .popup-form .button-group {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.table-popup .popup-table-content {
  padding: 16px 40px 28px 40px;
}

.table-popup .popup-table-content .pagination {
  margin-top: 30px;
}

.table-popup>.btn-item {
  display: flex;
  justify-content: flex-end;
  padding: 0 29px 27px 29px;
}

.table-popup .has-btn-content {
  padding: 16px 40px 15px 40px;
}

/* 리스트 팝업 */
.list-popup-inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  border-radius: 8px;
  background-color: #fff;
}

.list-popup-tab-menu-box {
  width: 100%;
  padding-left: 19px;
  border-bottom: 1px solid var(--gray-20);
}

.list-popup-tab-menu-box .tab-menu-item {
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.list-popup-tab-menu-box .tab-list {
  color: var(--gray-40);
  padding: 19px 18px 19px;
}

.list-popup-tab-menu-box .tab-list.active {
  color: var(--toyota-red);
  border-bottom: 2px solid var(--toyota-red);
}

.list-form-box {
  width: 100%;
  padding: 24px 11px 0px 30px;
}

.list-form-box ul {
  padding-left: 10px;
  overflow-y: auto;
  /* height: 530px; */
}

.list-form-box li {
  color: var(--gray-50);
  padding-bottom: 24px;
}

.list-form-box li span {
  display: inline-block;
  width: 160px;
}

.list-form-box p {
  display: inline-block;
  color: var(--gray-90);
  width: 250px;
  word-wrap: break-word;
}

.list-form-box .btn-box {
  padding-right: 20px;
}

.list-form-box .btn-box>div {
  width: 100%;
  border-top: 1px solid var(--gray-20);
  display: flex;
  justify-content: end;
  gap: 8px;
  padding: 20px 0;
}

.list-form-box-carinfo li {
  color: var(--gray-50);
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.list-form-box-carinfo p {
  display: inline-block;
  color: var(--gray-90);
  width: 250px;
  word-wrap: break-word;
}

.list-popup-inner .list-form-box ul::-webkit-scrollbar {
  width: 3px;
}

.list-popup-inner .list-form-box ul::-webkit-scrollbar-thumb {
  background: var(--gray-40);
  border-radius: 8px;
}

.list-popup-inner .list-form-box ul::-webkit-scrollbar-track {
  background: transparent;
}

.list-popup-inner .list-form-box ul::-webkit-scrollbar-button {
  display: none;
}

/* [popup-1069size] grid-column(2, 1fr) stjyle form */
.popup-container .thousand-popup {
  padding: 0;
  width: 1069px;
}

.thousand-popup .popup-title {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-20);
}

.thousand-popup .popup-title .img-box {
  width: 36px;
}

.thousand-popup .popup-title .img-box img {
  width: 100%;
  object-fit: contain;
}


.thousand-popup .form-container {
  padding: 20px 40px;
}

.thousand-popup .grid-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.thousand-popup .grid-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 12px;
  width: 100%;
}

.thousand-popup .grid-form fieldset .input-group {
  gap: 20px;
}

#jsonBox {
  max-height: 400px;   /* 최대 높이 지정 (원하는 값으로 조절 가능) */
  overflow: auto;      /* 넘칠 경우 스크롤 추가 */
  border: 1px solid #ddd; /* 가독성을 위한 테두리 */
  padding: 10px;
  background: #f4f4f4;
  border-radius: 5px;
  margin: 25px 39px;
}

#jsonBox pre {
  margin: 0;
  font-family: monospace;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.w100{
    width:100px !important;
}
.w140{
    width:140px !important;
}
.w170{
    width:170px !important;
}
/* 0321 추가 */
.customer_popup-container .table-popup .popup-title-box {
  /* 팝업 타이틀 간격 조정 */
  padding: 12px 30px;
}
.customer_popup-container .table-popup .popup-table-content {
  /* 테이블 영역 간격 조정 */
  padding: 12px 40px 22px 40px;
}
.customer_popup-container .table-popup .popup-table-content .row-table-head th {
  /* 테이블 헤더 타이틀 간격 조정 */
  padding: 5x 0 5px 0px;
  font-size: 14px;
}
.customer_popup-container .table-popup .popup-table-content .row-table-body td  {
  /* 테이블 바다 간격 조정 */
  padding: 12px 0 12px 0px;
}
.customer_popup-container .table-popup .popup-table-content .table-box .row-table-body tr td {
  font-size: 12px !important;
}
.customer_popup-container .table-popup .popup-table-content .pagination {
  margin-top: 20px;
}




