@charset "utf-8";

/* Sotong Cusom Style */
body {
  /* app webview 호출시 바탕색 white 로 */
  background-color: white !important;
}

header { height: 70px;}
.bg-edu{
  background: #dfcdff;
}

.bg-sotong{
  background: #ffeeef;
}

.bg-sotong-red{
  background: #f96b71;
}

.single-line {
  white-space: nowrap;       /* 줄바꿈 금지 */
  /*overflow: hidden;         /* 넘치는 텍스트 숨김 */
  /*text-overflow: ellipsis;  /* 넘칠 때 말줄임 표시(...) 선택사항 */
}

/* *********** */
/* custom able */

.btn-social {
	position: relative;
	padding-left: 3rem;
}

.btn-social-icon {
	position: absolute;
	left: 1rem;
	width: 2rem;
	top: 50%;
	transform: translateY(-50%);
}

.close-absolute {
  position: absolute;
  top: 0;
  right: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

img.bg-image {
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.bg-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.full-screen {
  height: calc(100vh - 72px);
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}


/* ===== Clean Table UI (Google + Tailwind Style) ===== */
.clean-table-wrap {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* table base */
.clean-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #1f2937;
}

/* header */
.clean-table thead {
  background: #f9fafb;
}

.clean-table th {
  padding: 14px 12px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

/* body */
.clean-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

/* hover */
.clean-table tbody tr:hover {
  background: #f0f9ff;
}

/* last row border remove */
.clean-table tbody tr:last-child td {
  border-bottom: none;
}

/* align helpers */
.t-right { text-align:right; }
.t-center { text-align:center; }

/* badge style */
.badge-soft {
  background: #e0f2fe;
  color: #0284c7;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* total summary row */
.total-row {
  background: #f8fafc;
  font-weight: 700;
}

/* responsive */
@media(max-width:768px){
  .clean-table {
    font-size: 13px;
  }
}
/* ===== Bootstrap table-sm Compatible ===== */

.clean-table.table-sm th,
.clean-table.table-sm td {
  padding: 8px 10px;
  font-size: 13px;
}

/* ===== small text support ===== */

.clean-table.small,
.clean-table .small {
  font-size: 12px;
}

.clean-table.small th,
.clean-table.small td {
  padding: 7px 9px;
}

/* ===== table-sm + small 같이 쓸 경우 ===== */

.clean-table.table-sm.small th,
.clean-table.table-sm.small td {
  padding: 6px 8px;
  font-size: 12px;
}
/* ///===== Clean Table UI (Google + Tailwind Style) ===== */