@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

body{
    margin:0;
    padding:0;
    background:#f6f7fb;
    color:#222;

    font-family:'Inter','Noto Sans KR',sans-serif;
}
  
  .ir-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px 120px;
  }
  
  .ir-title {
    margin-bottom: 42px;
  }
  
  .ir-title span {
    display: inline-block;
    margin-bottom: 14px;
    color: #d95a2b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .ir-title h1 {
    margin: 0;
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
  
  .ir-panel {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }
  
  .ir-form {
    padding: 20px 52px 60px;
  }
  
  .form-line {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;

    align-items: center;

    padding: 24px 0;

    border-bottom: 1px solid #ededed;
}
  
  .form-line.one {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .form-line.top {
    align-items: start;
  }
  
  .form-line label {
    font-size: 15px;
    font-weight: 700;

    color: #222;
}
  
  input,
  textarea,
  select {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    background: #fafafa;
    padding: 16px 18px;
    font-size: 15px;
    outline: none;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #d95a2b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(217, 90, 43, 0.12);
  }
  
  textarea {
    min-height: 220px;
    resize: vertical;
    line-height: 1.7;
  }
  
  .byte-text {
    margin: 10px 2px 0;
    text-align: right;
    color: #777;
    font-size: 14px;
  }
  
  .privacy {
    padding-top: 52px;
  }
  
  .privacy h2 {
    margin: 0 0 20px;
    font-size: 30px;
    letter-spacing: -0.03em;
  }
  
  .privacy-box {
    padding: 30px;
    border-radius: 22px;
    background: #f8f4ef;
    color: #444;
    line-height: 1.75;
  }
  
  .privacy-box p {
    margin: 0 0 22px;
  }
  
  .privacy-box p:last-child {
    margin-bottom: 0;
  }
  
  .table-scroll {
    overflow-x: auto;
    margin: 22px 0;
  }
  
  table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
  }
  
  th,
  td {
    border: 1px solid #dfdfdf;
    padding: 17px;
    text-align: left;
    font-size: 14px;
    line-height: 1.55;
  }
  
  th {
    background: #2b2b2b;
    color: #fff;
  }
  
  .agree {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .agree input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #d95a2b;
  }
  
  .submit-area {
    display: flex;
    justify-content: center;
    margin-top: 52px;
  }
  
  button,
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #d95a2b;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
  }
  
  button:hover,
  .btn:hover {
    background: #b94720;
  }
  
  .admin-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .admin-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  }
  
  .admin-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .admin-title h1 {
    margin: 0;
    font-size: 34px;
  }
  
  .admin-title div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .admin-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
  }
  
  .admin-table th {
    background: #222;
  }
  
  .admin-table td,
  .admin-table th {
    padding: 14px;
  }
  
  .admin-login {
    max-width: 420px;
    margin: 100px auto;
  }
  
  .detail-box {
    display: grid;
    gap: 18px;
    margin-top: 24px;
  }
  
  .detail-item {
    padding: 18px;
    border-radius: 14px;
    background: #f7f7f7;
  }
  
  .detail-item strong {
    display: block;
    margin-bottom: 8px;
  }
  
  pre {
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0;
    font-family: inherit;
  }
  
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0;
  }
  
  .stat-box {
    padding: 22px;
    border-radius: 18px;
    background: #f8f4ef;
  }
  
  .stat-box strong {
    display: block;
    font-size: 30px;
    color: #d95a2b;
  }
  
  .stat-box span {
    display: block;
    margin-top: 6px;
    color: #555;
    font-size: 14px;
  }
  
  .search-box {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
    gap: 10px;
    margin: 28px 0;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  
  .pagination a {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    background: #eee;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .pagination a.active {
    background: #d95a2b;
    color: #fff;
  }
  
  @media (max-width: 900px) {
    .ir-page {
      padding: 50px 18px 80px;
    }
  
    .ir-title h1 {
      font-size: 40px;
    }
  
    .ir-form {
        padding: 24px 70px 70px;
    }
  
    .form-line {
        display: grid;
    
        grid-template-columns: 140px 1fr;
    
        gap: 20px;
    
        align-items: center;
    
        padding: 24px 0;
    
        border-bottom: 1px solid #ededed;
    }
  
    .privacy-box {
      padding: 22px;
    }
  
    .stat-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .search-box {
      grid-template-columns: 1fr;
    }
  
    .admin-title {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  .ir-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 44px;
  }
  
  .ir-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .ir-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
  }
  
  .ir-title {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .ir-title span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(217, 90, 43, 0.1);
    color: #d95a2b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .ir-title h1 {
    margin-top: 22px;
  }
  
  .ir-title-desc {
    margin: 18px auto 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .ir-panel {
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  }
  
  .form-line label {
    color: #111;
  }
  
  input::placeholder,
  textarea::placeholder {
    color: #aaa;
  }
  
  .file-upload-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  
  .file-upload-wrap input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
  }
  
  .file-upload-btn {
    width: auto !important;
    min-width: 120px;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #222;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .file-upload-btn:hover {
    background: #d95a2b;
    transform: translateY(-1px);
  }
  
  .file-name {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    background: #fafafa;
    color: #555;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    flex: 1;
    min-width: 220px;
  }
  
  .file-help {
    width: 100%;
    margin: 0;
    color: #888;
    font-size: 13px;
  }
  
  .privacy-box {
    border: 1px solid rgba(217, 90, 43, 0.12);
  }
  
  button[type="submit"] {
    min-width: 180px;
    height: 56px;
    font-size: 16px;
  }
  
  button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  @media (max-width: 900px) {
    .ir-logo {
      max-width: 170px;
    }
  
    .ir-logo-wrap {
      margin-bottom: 32px;
    }
  
    .ir-title {
      text-align: left;
    }
  
    .file-upload-wrap {
      display: block;
    }
  
    .file-upload-btn {
      margin-bottom: 10px;
    }
  
    .file-name {
      width: 100%;
      margin-bottom: 8px;
    }
  }
  /* =========================
   GAONS ADMIN LOGIN
========================= */

.gaons-login-body{
    margin:0;
    min-height:100vh;
    background:
    linear-gradient(
        135deg,
        #f5f7fb 0%,
        #eef2f7 100%
    );
}

.gaons-login-wrap{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.gaons-login-card{
    width:100%;
    max-width:500px;
    background:#ffffff;
    border-radius:30px;
    padding:50px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.gaons-logo-wrap{
    text-align:center;
    margin-bottom:25px;
}

.gaons-logo{
    max-width:220px;
    width:100%;
    height:auto;
}

.gaons-login-title{
    text-align:center;
    margin-bottom:40px;
}

.gaons-login-title h1{
    margin:0;
    font-size:32px;
    font-weight:800;
    color:#111;
}

.gaons-login-title p{
    margin-top:10px;
    color:#888;
    font-size:14px;
}

.gaons-input-group{
    margin-bottom:25px;
}

.gaons-input-group label{
    display:block;
    margin-bottom:10px;
    font-weight:700;
    color:#333;
}

.gaons-input-group input{
    width:100%;
    height:56px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    box-sizing:border-box;
}

.gaons-input-group input:focus{
    outline:none;
    border-color:#d95a2b;
    box-shadow:
    0 0 0 4px rgba(217,90,43,.12);
}

.gaons-login-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:#d95a2b;
    color:#fff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    transition:.2s;
}

.gaons-login-btn:hover{
    background:#c44f24;
}

.gaons-error{
    margin-bottom:25px;
    padding:15px;
    border-radius:12px;
    background:#fff3f3;
    color:#d40000;
    font-size:14px;
}

@media(max-width:768px){

    .gaons-login-card{
        padding:30px;
    }

    .gaons-logo{
        max-width:180px;
    }

}
/* =========================
   GAONS LOGIN FOOTER
========================= */

.gaons-login-title{
    text-align:center;
    margin-bottom:40px;
}

.gaons-login-title h1{
    margin:0;
    font-size:38px;
    font-weight:900;
    color:#111;
    letter-spacing:.03em;
}

.gaons-login-title p{
    margin-top:12px;
    color:#888;
    font-size:14px;
}

.gaons-footer{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid #eee;
    text-align:center;
}

.gaons-footer-logo{
    width:120px;
    height:auto;
    opacity:.85;
    margin-bottom:12px;
}

.gaons-footer p{
    margin:0;
    color:#999;
    font-size:12px;
    letter-spacing:.03em;
}
/* =========================
   GAONS ADMIN LIST
========================= */

.gaons-admin-body {
    margin: 0;
    min-height: 100vh;
    background:
      radial-gradient(circle at top left, rgba(217, 90, 43, 0.12), transparent 28%),
      linear-gradient(135deg, #f5f7fb 0%, #eef1f6 100%);
  }
  
  .gaons-admin-layout {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px 90px;
  }
  
  .gaons-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .gaons-admin-eyebrow {
    margin: 0 0 10px;
    color: #d95a2b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
  }
  
  .gaons-admin-header h1 {
    margin: 0;
    color: #111;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.04em;
  }
  
  .gaons-admin-desc {
    margin: 14px 0 0;
    color: #69707d;
    font-size: 15px;
  }
  
  .gaons-admin-user{
    min-width:260px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    text-align:center;

    padding:28px;

    border-radius:24px;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.gaons-admin-user span{
    display:block;
    font-size:18px;
    font-weight:800;
    margin-bottom:10px;
}

.gaons-admin-user em{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:80px;
    height:34px;

    border-radius:999px;

    background:#fff2eb;
    color:#d95a2b;

    font-style:normal;
    font-weight:700;
}
  
  .gaons-admin-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  
  .gaons-admin-menu a {
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
  }
  
  .gaons-admin-menu a:hover {
    transform: translateY(-1px);
    background: #222;
    color: #fff;
  }
  
  .gaons-admin-menu a.logout {
    background: #222;
    color: #fff;
  }
  
  .gaons-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
  }
  
  .gaons-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 130px;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
  }
  
  .gaons-stat-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(217, 90, 43, 0.1);
  }
  
  .gaons-stat-card span {
    position: relative;
    z-index: 1;
    display: block;
    color: #69707d;
    font-size: 14px;
    font-weight: 700;
  }
  
  .gaons-stat-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 22px;
    color: #111;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  
  .gaons-admin-card {
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
  }
  
  .gaons-section-title {
    margin-bottom: 24px;
  }
  
  .gaons-section-title h2 {
    margin: 0;
    color: #111;
    font-size: 26px;
    letter-spacing: -0.03em;
  }
  
  .gaons-section-title p {
    margin: 8px 0 0;
    color: #7a7f89;
    font-size: 14px;
  }
  
  .gaons-search-box {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
    gap: 10px;
    margin-bottom: 26px;
  }
  
  .gaons-search-box input,
  .gaons-search-box select {
    height: 48px;
    border: 1px solid #e0e3e8;
    border-radius: 14px;
    background: #f9fafc;
    padding: 0 14px;
    font-size: 14px;
  }
  
  .gaons-search-box input:focus,
  .gaons-search-box select:focus {
    border-color: #d95a2b;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(217, 90, 43, 0.1);
  }
  
  .gaons-search-box button,
  .gaons-reset-btn {
    height: 48px;
    min-width: 86px;
    border: none;
    border-radius: 14px;
    background: #d95a2b;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .gaons-reset-btn {
    background: #222;
  }
  
  .gaons-table-wrap {
    overflow-x: auto;
    border: 1px solid #eaedf1;
    border-radius: 22px;
    background: #fff;
  }
  
  .gaons-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
  }
  
  .gaons-table th {
    padding: 18px 16px;
    background: #171717;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
  }
  
  .gaons-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #edf0f4;
    color: #333;
    font-size: 14px;
    vertical-align: middle;
  }
  
  .gaons-table tbody tr:hover {
    background: #fff8f5;
  }
  
  .gaons-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  .gaons-no {
    color: #999 !important;
    font-weight: 800;
  }
  
  .gaons-subject {
    color: #111 !important;
    font-weight: 800;
  }
  
  .gaons-date {
    color: #777 !important;
    font-size: 13px !important;
  }
  
  .gaons-status {
    min-width: 72px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .status-new {
    background: rgba(217, 90, 43, 0.12);
    color: #d95a2b;
  }
  
  .status-checking {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
  }
  
  .status-completed {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
  }
  
  .gaons-file-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .gaons-file-empty {
    color: #aaa;
    font-weight: 800;
  }
  
  .gaons-view-btn {
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f0f2f5;
    color: #222;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  
  .gaons-view-btn:hover {
    background: #d95a2b;
    color: #fff;
  }
  
  .gaons-empty {
    padding: 48px !important;
    text-align: center;
    color: #999 !important;
  }
  
  .gaons-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  
  .gaons-pagination a {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    background: #eef0f4;
    color: #333;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .gaons-pagination a.active {
    background: #d95a2b;
    color: #fff;
  }
  
  @media (max-width: 1000px) {
    .gaons-admin-header {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .gaons-admin-user {
      width: 100%;
      text-align: left;
    }
  
    .gaons-stat-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gaons-search-box {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .gaons-admin-layout {
      padding: 34px 16px 70px;
    }
  
    .gaons-admin-header h1 {
      font-size: 34px;
    }
  
    .gaons-stat-grid {
      grid-template-columns: 1fr;
    }
  
    .gaons-admin-card {
      padding: 22px;
    }
  }
  /* =========================
   GAONS ADMIN DETAIL
========================= */

.gaons-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 26px;
  }
  
  .gaons-detail-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .gaons-line-btn {
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #222;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
  }
  
  .gaons-line-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-1px);
  }
  
  .gaons-detail-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
  }
  
  .gaons-summary-card {
    min-height: 108px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
  }
  
  .gaons-summary-card span {
    display: block;
    color: #7a7f89;
    font-size: 13px;
    font-weight: 800;
  }
  
  .gaons-summary-card strong {
    display: block;
    margin-top: 18px;
    color: #111;
    font-size: 22px;
    line-height: 1.35;
    word-break: break-word;
  }
  
  .gaons-status-text {
    display: inline-flex !important;
    width: auto;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px !important;
  }
  
  .status-text-new {
    background: rgba(217, 90, 43, 0.12);
    color: #d95a2b !important;
  }
  
  .status-text-checking {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb !important;
  }
  
  .status-text-completed {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a !important;
  }
  
  .gaons-detail-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
  }
  
  .gaons-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  
  .gaons-field.full {
    grid-column: 1 / -1;
  }
  
  .gaons-field label {
    display: block;
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
    font-weight: 900;
  }
  
  .gaons-field input,
  .gaons-field select,
  .gaons-field textarea {
    width: 100%;
    border: 1px solid #e0e3e8;
    border-radius: 16px;
    background: #f9fafc;
    padding: 16px 18px;
    color: #222;
    font-size: 15px;
    box-sizing: border-box;
  }
  
  .gaons-field input,
  .gaons-field select {
    height: 54px;
  }
  
  .gaons-field textarea {
    min-height: 240px;
    resize: vertical;
    line-height: 1.7;
  }
  
  .gaons-field textarea.memo {
    min-height: 150px;
  }
  
  .gaons-field input:focus,
  .gaons-field select:focus,
  .gaons-field textarea:focus {
    border-color: #d95a2b;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(217, 90, 43, 0.1);
  }
  
  .gaons-readonly-box {
    min-height: 54px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f3f5f8;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
  }
  
  .gaons-info-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
  }
  
  .gaons-info-panel div {
    padding: 18px;
    border-radius: 18px;
    background: #f8f4ef;
  }
  
  .gaons-info-panel span {
    display: block;
    margin-bottom: 8px;
    color: #8a6a59;
    font-size: 13px;
    font-weight: 900;
  }
  
  .gaons-info-panel strong {
    color: #222;
    font-size: 14px;
    word-break: break-all;
  }
  
  .gaons-info-panel a {
    color: #d95a2b;
    font-weight: 900;
    text-decoration: none;
  }
  
  .gaons-info-panel a:hover {
    text-decoration: underline;
  }
  
  .gaons-detail-submit {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }
  
  .gaons-primary-btn {
    min-width: 180px;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: #d95a2b;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .gaons-primary-btn:hover {
    background: #c44f24;
    transform: translateY(-1px);
  }
  
  .gaons-delete-form {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #edf0f4;
  }
  
  .gaons-danger-btn {
    min-width: 130px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }
  
  .gaons-danger-btn:hover {
    background: #b91c1c;
  }
  
  .gaons-view-only {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .gaons-view-item {
    padding: 20px;
    border-radius: 18px;
    background: #f8f9fb;
  }
  
  .gaons-view-item.full {
    grid-column: 1 / -1;
  }
  
  .gaons-view-item span {
    display: block;
    margin-bottom: 10px;
    color: #777;
    font-size: 13px;
    font-weight: 900;
  }
  
  .gaons-view-item strong,
  .gaons-view-item pre {
    color: #222;
    font-size: 15px;
    line-height: 1.7;
    word-break: break-word;
  }
  
  .gaons-view-item pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: inherit;
  }
  
  .gaons-view-item a {
    color: #d95a2b;
    font-weight: 900;
    text-decoration: none;
  }
  
  @media (max-width: 1000px) {
    .gaons-detail-header {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .gaons-detail-summary {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gaons-detail-grid {
      grid-template-columns: 1fr;
    }
  
    .gaons-info-panel {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .gaons-detail-summary {
      grid-template-columns: 1fr;
    }
  
    .gaons-detail-card {
      padding: 22px;
    }
  
    .gaons-view-only {
      grid-template-columns: 1fr;
    }
  }
  /* =========================
   GAONS HISTORY
========================= */

.gaons-history-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
  }
  
  .gaons-history-empty {
    padding: 44px;
    border-radius: 24px;
    background: #f8f9fb;
    text-align: center;
  }
  
  .gaons-history-empty strong {
    display: block;
    color: #111;
    font-size: 20px;
  }
  
  .gaons-history-empty p {
    margin: 10px 0 0;
    color: #888;
    font-size: 14px;
  }
  
  .gaons-history-timeline {
    position: relative;
    display: grid;
    gap: 24px;
    margin-top: 28px;
  }
  
  .gaons-history-item {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 18px;
  }
  
  .gaons-history-marker {
    width: 16px;
    height: 16px;
    margin-top: 24px;
    border-radius: 50%;
    background: #d95a2b;
    box-shadow: 0 0 0 8px rgba(217, 90, 43, 0.12);
  }
  
  .gaons-history-content {
    padding: 26px;
    border: 1px solid #edf0f4;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
  }
  
  .gaons-history-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid #edf0f4;
  }
  
  .gaons-history-top strong {
    display: block;
    color: #111;
    font-size: 18px;
    font-weight: 900;
  }
  
  .gaons-history-top span {
    display: block;
    margin-top: 6px;
    color: #777;
    font-size: 13px;
  }
  
  .gaons-history-top em {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f5f8;
    color: #777;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
  }
  
  .gaons-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .gaons-history-field.full {
    grid-column: 1 / -1;
  }
  
  .gaons-history-field > label {
    display: block;
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
    font-weight: 900;
  }
  
  .gaons-history-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .gaons-history-compare > div {
    min-height: 72px;
    padding: 16px;
    border-radius: 16px;
    background: #f8f9fb;
  }
  
  .gaons-history-compare > div:last-child {
    background: #fff8f5;
  }
  
  .gaons-history-compare span {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 12px;
    font-weight: 900;
  }
  
  .gaons-history-compare p,
  .gaons-history-compare pre {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
  }
  
  .gaons-history-compare pre {
    white-space: pre-wrap;
    font-family: inherit;
  }
  
  @media (max-width: 900px) {
    .gaons-history-card {
      padding: 22px;
    }
  
    .gaons-history-item {
      grid-template-columns: 1fr;
    }
  
    .gaons-history-marker {
      display: none;
    }
  
    .gaons-history-top {
      flex-direction: column;
    }
  
    .gaons-history-grid {
      grid-template-columns: 1fr;
    }
  
    .gaons-history-compare {
      grid-template-columns: 1fr;
    }
  }
  /* =========================
   GAONS SETTING
========================= */

.gaons-setting-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
  }
  
  .gaons-setting-form {
    display: grid;
    gap: 24px;
  }
  
  .gaons-setting-field label {
    display: block;
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
    font-weight: 900;
  }
  
  .gaons-setting-field textarea {
    width: 100%;
    min-height: 180px;
    border: 1px solid #e0e3e8;
    border-radius: 18px;
    background: #f9fafc;
    padding: 18px;
    color: #222;
    font-size: 15px;
    line-height: 1.7;
    resize: vertical;
    box-sizing: border-box;
  }
  
  .gaons-setting-field textarea:focus {
    border-color: #d95a2b;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(217, 90, 43, 0.1);
  }
  
  .gaons-setting-field p {
    margin: 10px 0 0;
    color: #888;
    font-size: 13px;
  }
  
  .gaons-setting-guide {
    padding: 24px;
    border-radius: 22px;
    background: #f8f4ef;
    border: 1px solid rgba(217, 90, 43, 0.12);
  }
  
  .gaons-setting-guide h3 {
    margin: 0 0 14px;
    color: #222;
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  
  .gaons-setting-guide ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
  }
  
  @media (max-width: 640px) {
    .gaons-setting-card {
      padding: 22px;
    }
  }
  /* =========================
   GAONS ADMIN ACCOUNT LIST
========================= */

.gaons-admin-account-table {
    min-width: 920px;
  }
  
  .gaons-admin-login-id {
    color: #111;
    font-weight: 900;
  }
  
  .gaons-role-badge,
  .gaons-active-badge,
  .gaons-inactive-badge {
    min-width: 78px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .role-view {
    background: rgba(107, 114, 128, 0.12);
    color: #4b5563;
  }
  
  .role-edit {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
  }
  
  .role-delete {
    background: rgba(234, 88, 12, 0.12);
    color: #ea580c;
  }
  
  .role-super {
    background: rgba(217, 90, 43, 0.14);
    color: #d95a2b;
  }
  
  .gaons-active-badge {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
  }
  
  .gaons-inactive-badge {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
  }
  /* =========================
   GAONS ADMIN EDIT
========================= */

.gaons-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    background: #f8f9fb;
    border: 1px solid #edf0f4;
    cursor: pointer;
}

.gaons-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d95a2b;
}

.gaons-checkbox span {
    color: #222;
    font-size: 15px;
    font-weight: 700;
}
/* =========================
   GAONS LOGIN LOG
========================= */

.gaons-log-table {
    min-width: 1100px;
  }
  
  .gaons-log-success,
  .gaons-log-fail {
    min-width: 64px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .gaons-log-success {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
  }
  
  .gaons-log-fail {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
  }
  
  .gaons-user-agent {
    max-width: 360px;
    color: #777 !important;
    font-size: 12px !important;
    line-height: 1.5;
    word-break: break-all;
  }
  /* =========================
   GAONS DOWNLOAD LOG
========================= */

.gaons-download-table {
    min-width: 1000px;
}

.gaons-inquiry-badge {
    min-width: 70px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;

    background: rgba(217,90,43,0.12);
    color: #d95a2b;

    font-size: 12px;
    font-weight: 900;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gaons-file-name {
    max-width: 320px;
    color: #444;
    font-size: 13px;
    word-break: break-all;
}

.gaons-download-table tbody tr:hover {
    background: rgba(217,90,43,0.04);
}
/* =========================
   GAONS PASSWORD CHANGE
========================= */

.gaons-password-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
  }
  
  .gaons-password-form {
    display: grid;
    gap: 24px;
  }
  
  .gaons-password-guide {
    padding: 24px;
    border-radius: 22px;
    background: #f8f4ef;
    border: 1px solid rgba(217, 90, 43, 0.12);
  }
  
  .gaons-password-guide h3 {
    margin: 0 0 14px;
    color: #222;
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  
  .gaons-password-guide ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
  }
  
  @media (max-width: 640px) {
    .gaons-password-card {
      padding: 22px;
    }
  }
  button,
input,
textarea,
select{
    font-family:'Inter','Noto Sans KR',sans-serif;
}
/* =========================
   GAONS ADMIN FORM
========================= */

.gaons-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #f8f9fb;
  border: 1px solid #edf0f4;
  cursor: pointer;
}

.gaons-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d95a2b;
}

.gaons-checkbox span {
  color: #222;
  font-size: 15px;
  font-weight: 700;
}
/* =========================
   GAONS SEARCH BOX FINAL FIX
========================= */

.gaons-search-box {
  display: grid !important;
  grid-template-columns: 2fr 1fr 2fr auto auto !important;
  gap: 16px !important;
  align-items: center !important;
  margin-bottom: 30px !important;
}

.gaons-search-box input,
.gaons-search-box select,
.gaons-search-box button,
.gaons-reset-btn {
  height: 50px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.gaons-search-box input[name="keyword"] {
  min-width: 0 !important;
}

.gaons-date-range {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 320px !important;
}

.gaons-date-range input {
  flex: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.gaons-date-separator {
  flex: 0 0 auto !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #777 !important;
}

.gaons-search-box button,
.gaons-reset-btn {
  min-width: 110px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.gaons-reset-btn {
  background: #222 !important;
}

@media (max-width: 1000px) {
  .gaons-search-box {
    grid-template-columns: 1fr 1fr !important;
  }

  .gaons-date-range {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .gaons-search-box {
    grid-template-columns: 1fr !important;
  }

  .gaons-date-range {
    grid-column: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .gaons-date-separator {
    text-align: center !important;
  }
}
/* =========================
   GAONS BULK DELETE
========================= */

.gaons-bulk-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff8f5;
  border: 1px solid rgba(217, 90, 43, 0.14);
}

.gaons-bulk-actions span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.gaons-danger-small-btn{
    min-width:90px;
    height:34px;

    padding:0 14px;

    border:none;
    border-radius:999px;

    background:#dc2626;
    color:#fff;

    font-size:12px;
    font-weight:800;

    cursor:pointer;

    transition:.2s;
}

.gaons-danger-small-btn:hover {
  background: #b91c1c;
}

.gaons-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d95a2b;
}
.gaons-admin-logo{
  display:inline-block;

  text-decoration:none;

  color:#d95a2b;

  font-size:14px;
  font-weight:900;

  letter-spacing:3px;

  transition:.2s;
}

.gaons-admin-logo:hover{
  opacity:.7;
}
/* =========================
   TOP LOGOUT
========================= */

.gaons-admin-user{
    position:relative;
}

.gaons-top-logout{
    position:absolute;
    top:15px;
    right:15px;

    text-decoration:none;

    padding:8px 14px;

    border-radius:999px;

    background:#f5f5f5;
    color:#666;

    font-size:12px;
    font-weight:700;

    transition:.2s;
}

.gaons-top-logout:hover{
    background:#d95a2b;
    color:#fff;
}
/* =========================
   GAONS GLOBAL HEADER
========================= */

.gaons-global-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-bottom:18px;
}

.gaons-admin-logo{
  color:#d95a2b;
  font-size:13px;
  font-weight:900;
  letter-spacing:.16em;
  text-decoration:none;
}

.gaons-admin-logo:hover{
  opacity:.75;
}

.gaons-global-menu{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:30px;
}

.gaons-global-menu a{
  height:42px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  color:#333;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.gaons-global-menu a.active{
  background:#fff;
  color:#e45f2a;
  font-weight:700;
}

.gaons-global-menu a:hover{
  background:#222;
  color:#fff;
}
.gaons-global-title h1{
  margin:8px 0 16px;

  font-size:58px;
  font-weight:700;

  line-height:1.1;
  letter-spacing:-1.5px;
}

.gaons-global-title .gaons-admin-desc{
  margin:0;
  color:#6b7280;
  font-size:16px;
  font-weight:500;
}
/* =========================
   GAONS HEADER SEPARATION FIX
========================= */

.gaons-global-header{
  position:relative;
  margin-bottom:0 !important;
  padding:0 0 34px !important;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.gaons-global-header::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:120px;
  height:3px;
  border-radius:999px;
  background:#d95a2b;
}

.gaons-global-menu{
  margin-top:24px !important;
  margin-bottom:46px !important;
  padding-bottom:28px !important;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.gaons-detail-header,
.gaons-admin-header{
  margin-top:0 !important;
  margin-bottom:28px !important;
}

.gaons-detail-header .gaons-admin-logo,
.gaons-admin-header .gaons-admin-eyebrow{
  display:none !important;
}
/* =========================
   GAONS HEADER PREMIUM FIX
========================= */

/* 기존 헤더 구분선 제거 */
.gaons-global-header{
  padding-bottom:18px !important;
  border-bottom:none !important;
}

.gaons-global-header::after{
  display:none !important;
}

/* 메뉴를 카드형 플로팅 메뉴로 변경 */
.gaons-global-menu{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;

  width:fit-content !important;

  margin-top:6px !important;
  margin-bottom:52px !important;

  padding:10px !important;

  border:none !important;
  border-radius:999px !important;

  background:rgba(255,255,255,.58) !important;

  box-shadow:
      0 14px 40px rgba(0,0,0,.06),
      inset 0 0 0 1px rgba(255,255,255,.8) !important;

  backdrop-filter:blur(12px);
}

/* 메뉴 버튼 */
.gaons-global-menu a{
  height:38px !important;
  padding:0 16px !important;

  border-radius:999px !important;

  background:transparent !important;
  color:#333 !important;

  box-shadow:none !important;

  font-size:13px !important;
  font-weight:800 !important;

  transition:.2s ease !important;
}

/* hover */
.gaons-global-menu a:hover{
  background:#fff !important;
  color:#d95a2b !important;

  box-shadow:0 8px 20px rgba(0,0,0,.06) !important;

  transform:translateY(-1px);
}


/* 서브페이지 제목과 메뉴 사이 간격 정리 */
.gaons-detail-header,
.gaons-admin-header{
  margin-top:0 !important;
  margin-bottom:28px !important;
}

/* 모바일 */
@media(max-width:900px){
  .gaons-global-menu{
      width:100% !important;
      border-radius:22px !important;
  }

  .gaons-global-menu a{
      flex:1 1 auto;
  }
}
.gaons-global-menu::after{
  content:'';

  position:absolute;

  left:0;
  right:0;
  bottom:-24px;

  height:1px;

  background:
  linear-gradient(
      to right,
      transparent,
      rgba(0,0,0,.08),
      transparent
  );
}
/* =========================
   PREMIUM HEADER DIVIDER
========================= */

.gaons-header-divider{
  position:relative;

  width:100%;
  height:3px;

  margin:32px 0 46px;
}

.gaons-header-divider::before{
  content:'';

  position:absolute;

  left:0;
  right:0;
  top:1px;

  height:1px;

  background:
  linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,.06) 12%,
      rgba(0,0,0,.12) 50%,
      rgba(0,0,0,.06) 88%,
      transparent 100%
  );
}

.gaons-header-divider::after{
  content:'';

  position:absolute;

  left:50%;
  top:0;

  width:120px;
  height:3px;

  transform:translateX(-50%);

  border-radius:999px;

  background:#e45f2a;

  box-shadow:
      0 4px 12px rgba(228,95,42,.25);
}
/* =========================
   HEADER LINE DUPLICATE FIX
========================= */

.gaons-global-menu{
  border-bottom:none !important;
}

.gaons-global-menu::after{
  display:none !important;
}

.gaons-header-divider{
  position:relative !important;
  width:100% !important;
  height:3px !important;
  margin:32px 0 46px !important;
}

.gaons-header-divider::before{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  top:1px !important;
  height:1px !important;
  background:linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,.06) 12%,
      rgba(0,0,0,.12) 50%,
      rgba(0,0,0,.06) 88%,
      transparent 100%
  ) !important;
}

.gaons-header-divider::after{
  content:'' !important;
  position:absolute !important;
  left:50% !important;
  top:0 !important;
  width:120px !important;
  height:3px !important;
  transform:translateX(-50%) !important;
  border-radius:999px !important;
  background:#e45f2a !important;
  box-shadow:0 4px 12px rgba(228,95,42,.25) !important;
}
/* =========================
   GAONS ACTIVE MENU FINAL FIX
========================= */

.gaons-global-menu a.active{
  background:#fff !important;
  color:#e45f2a !important;
  font-weight:900 !important;

  box-shadow:
      0 8px 20px rgba(228,95,42,.18) !important;
}

.gaons-global-menu a.active:hover{
  background:#fff !important;
  color:#e45f2a !important;
}

.gaons-global-menu a:first-child.active{
  background:#fff !important;
  color:#e45f2a !important;
}
/* =========================
   REMOVE ORANGE BACKGROUND GLOW
========================= */

.gaons-admin-body{
  background:
      linear-gradient(135deg, #f5f7fb 0%, #eef1f6 100%) !important;
}

/* ==========================================
   IR FORM ALIGN FIX
========================================== */

.ir-form{
    padding:24px 80px 70px !important;
}

.form-line{
    grid-template-columns:140px minmax(0, 1fr) !important;
    gap:20px !important;
}

.form-line label{
    width:auto !important;
    min-width:auto !important;
    margin:0 !important;
}

.form-line > div,
.form-line > input,
.form-line > textarea{
    width:100% !important;
    max-width:100% !important;
}

.ir-form input[type="text"],
.ir-form input[type="email"],
.ir-form textarea{
    width:100% !important;
    box-sizing:border-box !important;
}
/* ==========================================
   IR FORM RESPONSIVE FINAL FIX
========================================== */

.ir-form input,
.ir-form textarea,
.ir-form select,
.file-name {
    box-sizing: border-box !important;
}

@media (max-width: 900px) {
    .ir-page {
        padding: 44px 18px 80px !important;
    }

    .ir-panel {
        border-radius: 24px !important;
    }

    .ir-form {
        padding: 10px 24px 44px !important;
    }

    .form-line {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 22px 0 !important;
    }

    .form-line label {
        padding-top: 0 !important;
    }

    .form-line > div,
    .form-line > input,
    .form-line > textarea {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ir-title h1 {
        font-size: 38px !important;
    }
}

@media (max-width: 640px) {
    .ir-page {
        padding: 36px 14px 64px !important;
    }

    .ir-logo {
        max-width: 150px !important;
    }

    .ir-title {
        text-align: center !important;
        margin-bottom: 34px !important;
    }

    .ir-title h1 {
        font-size: 34px !important;
    }

    .ir-title-desc {
        font-size: 14px !important;
    }

    .ir-form {
        padding: 4px 18px 38px !important;
    }

    .form-line {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 20px 0 !important;
    }

    input,
    textarea,
    select {
        padding: 14px 15px !important;
        font-size: 14px !important;
    }

    textarea {
        min-height: 180px !important;
    }

    .file-upload-wrap {
        display: block !important;
    }

    .file-upload-btn {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .file-name {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 46px !important;
        margin-bottom: 8px !important;
    }

    .privacy {
        padding-top: 36px !important;
    }

    .privacy h2 {
        font-size: 22px !important;
    }

    .privacy-box {
        padding: 20px !important;
        overflow-x: auto !important;
    }

    .privacy-box table {
        min-width: 620px !important;
    }

    .g-recaptcha {
        transform: scale(0.86);
        transform-origin: left top;
    }

    .submit-area button {
        width: 100% !important;
    }
}
/* ==========================================
   GAONS ADMIN HEADER RESPONSIVE
========================================== */

@media (max-width: 900px){

    .gaons-global-header{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:20px !important;
    }

    .gaons-admin-user{
        width:100% !important;

        display:flex !important;
        justify-content:space-between !important;
        align-items:center !important;

        box-sizing:border-box;
    }

    .gaons-global-title h1{
        font-size:40px !important;
        line-height:1.15 !important;
    }

    .gaons-admin-desc{
        font-size:15px !important;
    }

    .gaons-global-menu{
        width:100% !important;

        display:flex !important;
        flex-wrap:wrap !important;

        gap:10px !important;
    }

    .gaons-global-menu a{
        flex:1 1 calc(50% - 10px) !important;
        min-width:160px !important;
    }
}

@media (max-width: 640px){

    .gaons-global-title h1{
        font-size:30px !important;
        letter-spacing:-1px !important;
    }

    .gaons-admin-user{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:8px !important;
    }

    .gaons-top-logout{
        width:100% !important;
        text-align:center !important;
    }

    .gaons-global-menu{
        padding:8px !important;
    }

    .gaons-global-menu a{
        flex:1 1 100% !important;
        min-width:0 !important;
        height:44px !important;
    }

    .gaons-header-divider{
        margin:24px 0 34px !important;
    }
}
/* ==========================================
   GAONS ADMIN MOBILE HEADER FINAL FIX
========================================== */

html,
body{
    overflow-x:hidden !important;
}

.gaons-admin-layout{
    box-sizing:border-box !important;
    max-width:100% !important;
}

@media(max-width:900px){

    .gaons-global-header{
        display:flex !important;
        flex-direction:column !important;
        align-items:stretch !important;
        gap:20px !important;
    }

    .gaons-global-title h1{
        font-size:42px !important;
        line-height:1.15 !important;
        word-break:keep-all !important;
    }

    .gaons-admin-user{
        width:100% !important;
        min-width:0 !important;
        min-height:auto !important;

        padding:24px !important;

        display:grid !important;
        grid-template-columns:1fr auto !important;
        grid-template-areas:
            "name logout"
            "role role" !important;

        align-items:center !important;
        gap:12px !important;

        box-sizing:border-box !important;
        text-align:left !important;
    }

    .gaons-top-logout{
        position:static !important;

        grid-area:logout !important;

        width:auto !important;
        height:34px !important;

        padding:0 14px !important;

        justify-self:end !important;
    }

    .gaons-admin-user span{
        grid-area:name !important;

        margin:0 !important;

        max-width:100% !important;

        overflow:hidden !important;
        text-overflow:ellipsis !important;
        white-space:nowrap !important;
    }

    .gaons-admin-user em{
        grid-area:role !important;

        justify-self:start !important;
    }

    .gaons-global-menu{
        width:100% !important;
        box-sizing:border-box !important;

        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:10px !important;

        border-radius:24px !important;
        padding:12px !important;
    }

    .gaons-global-menu a{
        width:100% !important;
        min-width:0 !important;
        box-sizing:border-box !important;
        justify-content:center !important;
    }

    .gaons-stat-grid,
    .gaons-detail-summary{
        grid-template-columns:1fr 1fr !important;
    }

    .gaons-table-wrap{
        max-width:100% !important;
        overflow-x:auto !important;
    }
}

@media(max-width:640px){

    .gaons-admin-layout{
        padding-left:16px !important;
        padding-right:16px !important;
    }

    .gaons-global-title h1{
        font-size:34px !important;
        letter-spacing:-1px !important;
    }

    .gaons-admin-desc{
        font-size:14px !important;
        line-height:1.6 !important;
    }

    .gaons-global-menu{
        grid-template-columns:1fr !important;
    }

    .gaons-stat-grid,
    .gaons-detail-summary{
        grid-template-columns:1fr !important;
    }

    .gaons-admin-card,
    .gaons-detail-card,
    .gaons-setting-card,
    .gaons-history-card,
    .gaons-password-card{
        width:100% !important;
        box-sizing:border-box !important;
    }
}