/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
Description: 커스텀 기능 포함 자식 테마
Author: 사용자
*/
/* ✅ draw-table 관련 모바일 UI 개선 */
@media screen and (max-width: 768px) {
  .draw-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .draw-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .draw-header form,
  .draw-header a,
  .draw-header button {
    width: 100% !important;
    max-width: 100%;
    font-size: 15px;
    padding: 10px 14px;
    margin: 4px 0;
    box-sizing: border-box;
  }

  .draw-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .draw-table-wrapper table {
    font-size: 13px;
    min-width: 600px;
  }

  .draw-col {
    min-width: 60px;
    text-align: center;
  }
}
