:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Noto Sans KR', sans-serif;
}
* {
font-family: 'Noto Sans KR', sans-serif;
}
.table-row:hover {
background-color: rgba(59, 130, 246, 0.05);
}
@media (max-width: 768px) {
.table-header {
display: none;
}
.table-row {
display: flex;
flex-direction: column;
padding: 1rem;
border-bottom: 1px solid #e5e7eb;
margin-bottom: 0.5rem;
}
.table-cell {
padding: 0.25rem 0;
text-align: left;
display: flex;
}
.table-cell:before {
content: attr(data-label);
font-weight: 600;
width: 30%;
margin-right: 1rem;
}
}
.search-input:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}
select:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .responsive-table thead {
    display: none;
  }

  .responsive-table tr {
    display: block;
    margin-bottom: 1.25rem; /* Ä«µå °£ °£°Ý */
    padding: 1rem;
    border: 1px solid #d1d5db; /* Tailwind gray-300 */
    border-radius: 0.5rem; /* µÕ±Ù Å×µÎ¸® */
    background-color: #ffffff; /* Ä«µå ¹è°æ */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* ¾àÇÑ ±×¸²ÀÚ */
  }

  .responsive-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #f3f4f6; /* light separator */
  }

  .responsive-table td:last-child {
    border-bottom: none;
  }

  .responsive-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b7280; /* Tailwind gray-600 */
  }
}

