*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f8f9fa;
  font-family: -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}


h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.5px;
  text-align: left;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.5px;
  text-align: left;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
}

ol li {
  list-style: decimal;
  margin-left: 20px;
  line-height: 1.6;
}

span.bold {
  font-weight: 700;
}

/* wrap */
.wrap {
  width: calc(100vw - 240px);
  margin: 0;
  margin-left: 240px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.wrap .footer {
  width: 100%;
  z-index: 999;
}

.main-content-wrapper {
  display: flex;
  flex: 1;
  margin-top: 110px;
}

/* header */

  #header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
  }

  .header-main {
    background-color: white;
    border-bottom: 1px solid #d1d5db;
    padding: 0;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .header-top-bar {
    background-color: #374151;
    color: white;
    padding: 0;
    font-size: 12px;
    height: 38px;
    display: flex;
    align-items: center;
    order: 1;
  }

  .header-top-bar .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 30px;
  }

  .header-top-bar .header-welcome-msg {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .header-top-bar .header-login-area {
    font-size: 12px;
    display: flex;
    align-items: center;
    color: white;
    line-height: 1;
    height: 100%;
  }
  
  .header-top-bar .login-btn, 
  .header-top-bar .logout-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    margin-left: 8px;
    font-weight: 400;
    line-height: 1;
    height: 22px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .header-top-bar .login-btn:hover, 
  .header-top-bar .logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }

  /* ·Î±×ÀÎ ÈÄ Çì´õ ½ºÅ¸ÀÏ */
  .header-top-bar .company-name {
    font-weight: bold;
    color: white;
    font-size: 12px;
    margin-right: 12px;
  }

  .header-top-bar .base-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-right: 12px;
  }

  .header-top-bar .btn-edit-info {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1;
    height: 22px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
    margin-left: 8px;
  }

  .header-top-bar .btn-edit-info:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }


  /* LNB Äü¸Þ´º ½ºÅ¸ÀÏ */
  .lnb-quickmenu-section {
    margin-top: 25px;
    background: #ffffff;
  }

  .quickmenu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
  }

  .quickmenu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.2s;
    border: 1px solid #e9ecef;
  }

  .quickmenu-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .quickmenu-item img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }

  .quickmenu-item span {
    font-size: 12px;
    color: #333;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
  }

  
  /* ¸ÞÀÎ ÆäÀÌÁö Àü¿ë Çì´õ ÄÁÅ×ÀÌ³Ê */
  body.main-page .header-main {
    justify-content: center;
  }
  
  .header-main .header-inner {
    width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 28px;
    order: 2;
  }

  /* ¸ÞÀÎ ÆäÀÌÁö Àü¿ë Çì´õ ½ºÅ¸ÀÏ */
  body.main-page .header-main .header-inner {
    width: 1440px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .header-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 8px 0;
  }
  
  .header-logo {
    height: 44px;
    width: auto;
  }
    
  .logo-text-sub span:first-child {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
  }
  
  .logo-english {
    font-weight: 400;
    color: #666;
    font-size: 10px !important;
    margin-top: 0;
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .header-gnb-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 60px;
  }
  
  .header-gnb-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.2s ease;
  }
  
  .header-gnb-menu ul li a:hover {
    color: #1e3a8a;
  }
  
/* LNB) */

.lnb {
  width: 240px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: #fff;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Malgun Gothic', 'ë§‘ì?? ê³ ë”•', sans-serif;
  color: #ffffff;
  border-right: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
}

.lnb-logo {
  padding: 10px;
  background-color: #00427C;
  text-align: center;
}

.lnb-logo strong {
  font-size: 20px;
  font-weight: 400;
  display: block;
  color: #ffffff;
}

.lnb-logo span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.lnb-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.lnb-menu li {
  position: relative;
  border-bottom: 1px solid rgba(41, 78, 166, 0.3);
}

.lnb-menu li:last-child {
  border-bottom: none;
}

.lnb-menu li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-decoration: none;
  color: #062F4A;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0;
  margin: 0;
  position: relative;
  transition: all 0.2s ease;
}

.lnb-menu li > a:hover {
  background-color: #294EA6;
  color: #fff;
}

.lnb-menu li.active > a,
.lnb-menu li.expanded > a {
  background-color: #294EA6;
  color: #ffffff;
}

.lnb-menu li > a .arrow {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: all 0.2s ease;
  transform: rotate(-90deg);
  margin-left: 8px;
  font-size: 0;
  line-height: 0;
}

.lnb-menu li:hover > a .arrow {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.lnb-menu li.active > a .arrow,
.lnb-menu li.expanded > a .arrow {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.lnb-menu li.expanded > a .arrow {
  transform: rotate(0deg);
}

.lnb-menu li > a .arrow {
  display: none;
}

.lnb-menu li.has-submenu > a .arrow {
  display: inline-block;
}

.lnb-menu .icon {
  margin-right: 10px;
  width: 18px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.lnb-menu li.active a .icon {
  color: #ffffff;
}

.lnb-menu .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
  display: none;
  border-left: 3px solid #294EA6;
}

.lnb-menu li.expanded > .submenu {
  display: block;
}

.lnb-menu .submenu li {
  border-bottom: 1px solid rgba(41, 78, 166, 0.1);
  position: relative;
}

.lnb-menu .submenu li:last-child {
  border-bottom: none;
}

.lnb-menu .submenu li::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #294EA6;
  border-radius: 50%;
  opacity: 0.6;
}

.lnb-menu .submenu li a {
  padding: 14px 20px 14px 40px;
  font-size: 16px;
  color: #6c757d;
  margin: 0;
  background: transparent;
  transition: all 0.2s ease;
  font-weight: 400;
  position: relative;
}

.lnb-menu .submenu li a:hover {
  color: #294EA6;
  background: transparent;
}

.lnb-menu .submenu li.active a {
  background: transparent;
  color: #294EA6;
  font-weight: 700;
}

.lnb-menu .submenu li.active::before {
  background-color: #294EA6;
  opacity: 1;
}

.lnb-menu .sub-icon {
  display: none;
}

/* LNB ·Î±×ÀÎ ¼½¼Ç */
.lnb-login-section {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8f9fa;
}

.lnb-login-fields {
  margin-bottom: 12px;
}

.login-field-group {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.login-label {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.lnb-login-input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 12px;
  background: #fff;
}

.lnb-login-input:focus {
  border-color: #1e3a8a;
  outline: none;
}

.lnb-login-buttons {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.lnb-btn {
  flex: 1;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lnb-btn.signup {
  background: #6b7280;
  color: #fff;
  border-color: #6b7280;
}

.lnb-btn.signup:hover {
  background: #4b5563;
  border-color: #4b5563;
}

.lnb-btn.login {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

.lnb-btn.login:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.lnb-timestamp {
  font-size: 10px;
  color: #6b7280;
  text-align: center;
  background: #e5e7eb;
  padding: 4px 8px;
  border-radius: 4px;
}

.layout {
  display: flex;
  align-items: stretch;
}

/* Main container - takes remaining space */
.content {
  width: calc(100vw - 240px);
  max-width: 1200px;     
  min-width: calc(1440px - 240px);
  padding: 28px 28px 28px 28px;
  box-sizing: border-box;
  background-color: #f8f9fa;
  overflow-x: auto; 
  flex: 1; 
}



/* footer */

   .footer {
    width: 100%;
    max-width: none;
    background: #374151;
    color: #fff;
    padding: 24px 0;
    position: relative;
    z-index: 200;
    flex-shrink: 0; 
  }
  
  .footer .container {
    width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 28px;
    margin: 0;
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
  }
  
  .footer-left {
    margin-right: auto;
    text-align: left;
  }
    
  .footer-address {
    font-size: 13px;
    color: #e2e8f0;
    margin: 0 0 4px 0;
    line-height: 1.4;
    text-align: left;
  }
  
  .footer-copyright {
    font-size: 12px;
    color: #a0aec0;
    margin: 0;
    text-align: left;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .footer-logo img {
    height: 32px;
    width: auto;
    opacity: 0.5;
}

/* table */
.tbl-form,
.tbl-list {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid #D6DADE;
  overflow: hidden;
}

.tbl-form th,
.tbl-form td,
.tbl-list th,
.tbl-list td {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  padding: 8px 15px;
  font-size: 14px;
  vertical-align: middle;
}

.tbl-form th:first-child,
.tbl-form td:first-child,
.tbl-list th:first-child,
.tbl-list td:first-child {
  border-left: none;
}

.tbl-form tr:last-child th,
.tbl-form tr:last-child td,
.tbl-list tr:last-child th,
.tbl-list tr:last-child td {
  border-bottom: none;
}

.tbl-form th {
  width: 150px;
  background: #e9ecef;
  text-align: center;
  color: #495057;
  font-weight: 600;
}

.tbl-list th {
  background: #e9ecef;
  text-align: center;
  color: #111827;
  font-weight: 600;
}

.tbl-list td { text-align: center; }

/* table-horizontal */
.tbl-horizontal {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid #D6DADE;
  overflow: hidden;
}

.tbl-horizontal th,
.tbl-horizontal td {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  padding: 6px 15px;
  font-size: 15px;
  height: 42px;
  vertical-align: middle;
}

.tbl-horizontal th:first-child,
.tbl-horizontal td:first-child {
  border-left: none;
}

.tbl-horizontal tr:last-child th,
.tbl-horizontal tr:last-child td {
  border-bottom: none;
}

.tbl-horizontal th {
  background: #e9ecef;
  text-align: center;
  color: #111827;
  font-weight: 600;
}

.tbl-horizontal td {
  text-align: center;
}

.tbl-horizontal th.text-left,
.tbl-horizontal td.text-left {
  text-align: left !important;
}

.tbl-horizontal th.text-right,
.tbl-horizontal td.text-right {
  text-align: right !important;
}

.tbl-horizontal tbody tr {
  transition: all 0.2s ease;
  cursor: pointer;
}

.tbl-horizontal tbody tr:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 8px rgba(59, 109, 179, 0.1);
}

/* table-vertical */
.tbl-vertical {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid #D6DADE;
  overflow: hidden;
}

.tbl-vertical th,
.tbl-vertical td {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  padding: 6px 15px;
  font-size: 15px;
  height: 42px;
  vertical-align: middle;
}

.tbl-vertical th:first-child,
.tbl-vertical td:first-child {
  border-left: none;
}

.tbl-vertical tr:last-child th,
.tbl-vertical tr:last-child td {
  border-bottom: none;
}

.tbl-vertical th {
  width: 200px;
  min-width: 50px;
  background: #e9ecef;
  text-align: left;
  color: #111827;
  font-weight: 600;
}

.tbl-vertical td {
  text-align: left;
  background: #fff;
}

.tbl-vertical .radio-container,
.tbl-horizontal .radio-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}

.tbl-vertical .radio-label,
.tbl-horizontal .radio-label {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
}

.tbl-vertical .radio-input,
.tbl-horizontal .radio-input {
  margin-right: 5px;
}

.tbl-vertical .file-container,
.tbl-horizontal .file-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.file-container .btn-soft-blue {
  flex-shrink: 0;
  white-space: nowrap;
}

.file-container .file-buttons {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.tbl-vertical .file-name,
.tbl-horizontal .file-name {
  margin-right: 10px;
}

.tbl-vertical .btn-spacing,
.tbl-horizontal .btn-spacing {
  margin-left: 10px;
}

.tbl-vertical .notice-row,
.tbl-horizontal .notice-row {
  background: #f8f9fa;
  color: #dc2626;
  text-align: center;
  height: 40px;
}

.tbl-list tbody tr {
  transition: all 0.2s ease;
  cursor: pointer;
}

.tbl-list tbody tr:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 8px rgba(59, 109, 179, 0.1);
}

.tbl-list.no-hover tbody tr {
  cursor: default;
}

.tbl-list.no-hover tbody tr:hover {
  background-color: transparent;
  box-shadow: none;
}

/* check */
.chk-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chk-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-right: 15px;
}

/* radio */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-right: 15px;
}

/* input */
input[type="text"],
input[type="number"],
input[type="password"] {
  width: 100%;
  min-width: 120px;
  padding: 6px 12px;
  border: 1px solid #d6dbe1;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
  transition: border 0.2s;
}

select {
  width: 100%;
  min-width: 120px;
  padding: 6px 30px 8px 12px;
  border: 1px solid #d6dbe1;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus {
  border-color: #3b6db3;
  outline: none;
}

textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d6dbe1;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.4;
  background: #fff;
  box-sizing: border-box;
  resize: vertical;
  transition: border 0.2s;
}

textarea:focus {
  border-color: #3b6db3;
  outline: none;
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #1e3a8a;
  margin: 0;
  margin-right: 4px;
  vertical-align: middle;
}

input[type="file"],
.file-input {
  flex: 1;
  min-width: 400px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border 0.2s;
  cursor: pointer;
}



input[type="file"]:focus,
.file-input:focus {
  border-color: #3b6db3;
  outline: none;
}

.required-input {
    background-color: #fffacd !important; 
}

.readonly-input {
    background-color: #f8f9fa !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.required-input.readonly-input {
    background-color: #fffacd !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.required-label::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

.required-asterisk {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}


/* ±âº» ¹öÆ° */
.btn-sm {
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid #6b7280;
  background: #6b7280;
  color: #fff;
}

.btn-sm:hover {
  background: #4b5563;
  border-color: #4b5563;
}


.btn-primary-sm {
  padding: 8px 17px;
  font-size: 14px;
  border: none;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-primary-sm:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 2. Å×ÀÌºí ¿Ü ¹öÆ° - Áß°£ Å©±â, ´«¿¡ ¶ç´Â ½ºÅ¸ÀÏ */
.btn-section-blue {
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid #1e3a8a;
  background: #1e3a8a;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  min-width: 80px;
}

.btn-section-blue:hover {
  background: #1e40af;
  border-color: #1e40af;
}

.btn-section-gray {
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid #6b7280;
  background: #6b7280;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  min-width: 80px;
}

.btn-section-gray:hover {
  background: #4b5563;
  border-color: #4b5563;
}

.btn-section-green {
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid #059669;
  background: #059669;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  min-width: 80px;
}

.btn-section-green:hover {
  background: #047857;
  border-color: #047857;
}

/* 3. ÆäÀÌÁö ¹öÆ° - Å©°í °­Á¶µÈ ½ºÅ¸ÀÏ */


.btn-gray-sm {
  padding: 4px 6px;
  font-size: 13px;
  border: 1px solid #6c757d;
  background: #6c757d;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.btn-neutral-sm {
  padding: 6px 15px;
  font-size: 13px;
  border: 1px solid #adb5bd;
  background: #f8f9fa;
  color: #495057;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-neutral-sm:hover {
  background: #e9ecef;
  border-color: #9ca3af;
  color: #374151;
}

.btn-soft-blue {
  background-color: #e0f0ff;
  color: #0d6efd; 
  border: 1px solid #0d6efd;
  padding: 4px 13px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-size: 13px;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}

.btn-soft-blue:hover {
  background: #cce7ff;
  border-color: #0b5ed7;
  color: #0b5ed7;
}

.btn-soft-gray {
  background-color: #e9ecef;
  color: #2e2e2e;
  border: 1px solid #c1c1c1;
  padding: 6px 15px;
  border-radius: 4px;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
}

.btn-soft-teal {
  background-color: #e2f4f0;
  color: #09625a;
  border: 1px solid #0f7376;
  padding: 6px 15px;
  border-radius: 4px;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-soft-teal:hover {
  background-color: #ccfbf1;
  border-color: #0d9488;
  color: #0d9488;
}

.btn-soft-red {
  background-color: #f8d7da; 
  color: #dc3545; 
  border: 1px solid #dc3545; 
  padding: 6px 15px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-soft {
  background-color: #f8f9fa;
  color: #6b7280; 
  border: 1px solid #e5e7eb;
  padding: 4px 13px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-size: 13px;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}

.btn-soft:hover {
  background: #f1f3f4;
  border-color: #d1d5db;
  color: #374151;
}

/* ¸ÞÀÎ ÄÃ·¯ ¹öÆ°µé */
.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.btn-secondary {
  width: 100%;
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #6b7280;
  color: #111827;
}

.btn-outline {
  width: 100%;
  background: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: #1e3a8a;
  color: #fff;
}

.btn-inline {
  width: auto;
  display: inline-block;
  min-width: 120px;
}



/* ÇÃ·§ ¹öÆ° */
.btn-blue-flat {
  background: #3b82f6;
  color: #fff;
  border: 1px solid #3b82f6;
  border-radius: 6px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 100px;
}

.btn-blue-flat:hover {
  background: #0253b3;
  border-color: #0253b3;
  color: #fff;
}

/* ·Î±×ÀÎ ¹öÆ°µé */
.browser-login-btn {
  margin-bottom: 30px;
  width: auto !important;
  min-width: 200px;
  display: inline-block;
  padding: 16px 20px !important;
}

/* Ä«µå ¹öÆ°µé */
.btn-logout-card {
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  flex: 1;
}

.btn-edit-info {
  background: #1e3a8a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  flex: 1;
}

.btn-logout-card:hover {
  background: #b91c1c;
}

.btn-edit-info:hover {
  background: #1e40af;
}

/* ÆË¾÷ ¹öÆ°µé */
.btn-popup {
  padding: 10px 24px;
  margin: 0 8px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}



/* °Ë»ö ¹öÆ° */
.search-btn-bar .btn-sm,
.search-btn-bar button[type="submit"] {
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn-bar .btn-sm:hover,
.search-btn-bar button[type="submit"]:hover {
  background: #0b5ed7;
}

/* ¹öÆ° ÄÁÅ×ÀÌ³Ê */
.btn-container-center {
  text-align: right;
  margin: 20px 0;
}

.btn-container-center .btn-blue-flat {
  margin: 0 5px;
}

/* Location/Breadcrumb Style */
.location {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location a {
  color: #666;
  text-decoration: underline;
  padding: 4px 0;
  transition: color 0.2s;
}

.location a:hover {
  color: #00427C;
}

.location strong {
  font-weight: 600;
  color: #333;
}

.location::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3e%3c/path%3e%3cpolyline points='9,22 9,12 15,12 15,22'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-right: 2px;
  flex-shrink: 0;
}

.location .separator {
  color: #999;
  margin: 0 2px;
}

.badge-status {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge-status-done {
  color: #155724; /* Dark green text */
  background-color: #d4edda; /* Light green background */
}

.badge-status-wait {
  color: #856404; /* Dark yellow text */
  background-color: #fff3cd; /* Light yellow background */
}

/* Notification/Announcement Box Style */
.notification-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1.5px solid #3b6db3;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.notification-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b6db3, #4a90e2, #5bb3e6);
}

.notification-box .notification-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #3b6db3, #4a90e2);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(59, 109, 179, 0.3);
}

.notification-box .notification-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.notification-box .notification-text {
    flex: 1;
    padding-top: 6px;
}

.notification-text ul {
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #495057;
  line-height: 1.7;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.notification-text ul li {
  margin-bottom: 2px;
  padding-left: 24px;
  position: relative;
}

.notification-text ul li {
  padding-left: 20px !important;
  position: relative !important;
}

.notification-text ul li::before {
  content: '' !important;
  position: absolute !important;
  left: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 6px !important;
  height: 6px !important;
  background-color: #3b6db3 !important;
  border-radius: 50% !important;
}

.notification-text ul li:last-child {
  margin-bottom: 6px;
}

.notification-text ul li b {
  color: #111827;
  font-weight: 600;
  margin-right: 6px;
}

.highlight-date {
  color: #dc3545;
  font-weight: 700;
  font-size: 20px;
}

.notification-box-margin-top {
  margin: 40px 0 0 0;
}

.notification-box-no-icon {
  padding: 24px 32px 18px 32px;
  display: block;
}

.notification-box-no-icon .notification-text {
  padding-top: 0;
  width: 100%;
}

.notification-box .notification-text .status-guide-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0;
}

.notification-box .notification-text .status-guide-list li {
  margin-bottom: 8px;
  list-style: none !important;
}

.notification-box .notification-text .status-guide-list li .badge-status {
  margin-right: 8px;
}

.notification-box .notification-text .status-guide-item {
  margin-bottom: 8px;
  margin-top: 4px;
  font-size: 14px;
  color: #333;
  font-weight: normal;
  display: inline-block;
  margin-right: 20px;
}

.notification-box .notification-text .status-guide-item .badge-status {
  margin-right: 8px;
}

.notification-box .notification-text .status-guide-item:first-of-type {
  margin-top: 12px;
}

/* submain ÆäÀÌÁö Àü¿ë - ÄÃ·³ Çü½Ä ÇØÁ¦ */
.notification-single-column .notification-text ul {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}

/* ÇÑÁÙ¾¿ Ç¥½Ã¿ë Å¬·¡½º - °³º° Àû¿ë */
.notification-single-line .notification-text ul {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}

/* Å×ÀÌºí ºó µ¥ÀÌÅÍ Ç¥½Ã¿ë °øÅë ½ºÅ¸ÀÏ */
.table-empty-data {
  text-align: center !important;
  padding: 20px !important;
  color: #666 !important;
  font-size: 14px !important;
}

/* ´ã´çÀÚ ¿¬¶ôÃ³ Á¤º¸ ½ºÅ¸ÀÏ */
.contact-info {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.contact-item {
  margin-bottom: 3px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-department {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-label {
  font-weight: bold;
  color: #333;
  min-width: 60px;
  margin-right: 10px;
}

.contact-detail {
  color: #555;
  margin-bottom: 3px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

/* ÄÜÅÙÃ÷ ¹Ú½º ½ºÅ¸ÀÏ */
.content-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 20px;
  margin-top: 10px;
}

/* Èò»ö ¹è°æ ÄÜÅÙÃ÷ ¹Ú½º ½ºÅ¸ÀÏ (½ºÅ©·Ñ Æ÷ÇÔ) */
.content-box-white {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 20px;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.content-text {
  line-height: 1.6;
  color: #333;
}

.content-text p {
  margin-bottom: 0;
}

/* ÆÄÀÏ ¸®½ºÆ® ½ºÅ¸ÀÏ */
.file-list {
  min-height: 50px;
}

.file-item {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.file-name {
  color: #666;
  font-style: italic;
}

/* Å×ÀÌºí ÇÏÀÌ¶óÀÌÆ® Çà ½ºÅ¸ÀÏ */
.highlight-row {
  background-color: #d4edda !important;
}

/* ÀÎ¶óÀÎ ¹öÆ° ÄÁÅ×ÀÌ³Ê ½ºÅ¸ÀÏ */
.btn-container-inline {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* °Ë»ö Æû ½ºÅ¸ÀÏ */
.search-top {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 4px 16px 4px 16px;
  margin-top: 8px;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
}

.search-top .tbl-form {
  width: 100%;
  border: none;
  background: transparent;
  table-layout: fixed;
}

.search-top .tbl-form th {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  color: #374151;
  background: none;
  border: none;
  padding: 4px 12px 4px 0;
  vertical-align: middle;
  width: 100px;
  white-space: nowrap;
  position: relative;
}

.search-top .tbl-form th::before {
  color: #374151;
  font-weight: bold;
  margin-right: 8px;
}

.search-top .tbl-form th:first-child {
  padding-left: 0;
  padding-right: 12px;
}

.search-top .tbl-form td {
  border: none;
  padding: 4px 48px 4px 4px;
  vertical-align: middle;
  width: auto;
}

.search-top .tbl-form td input[type="text"],
.search-top .tbl-form td select {
  width: 100%;
  min-width: 120px;
  max-width: 100%;
}

.search-btn-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 16px;
}


.summary-box-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.summary-box {
  flex: 1;
  border-radius: 24px;
  padding: 40px 16px 24px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.summary-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.summary-box table {
  width: 100%;
  margin: 0 auto 20px auto;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.summary-box td, .summary-box th {
  padding: 14px 16px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

.summary-box td:first-child {
  color: #555;
  font-weight: 600;
}

.summary-box td:last-child {
  text-align: right;
  padding-right: 20px;
}

.summary-box tr:last-child td {
  border-bottom: none;
}

.summary-count {
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
}

.summary-count:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: scale(1.05);
}

.summary-box.contract { 
  background: #1e3a8a;
  color: #fff; 
}

.summary-box.check { 
  background: #3b82f6;
  color: #fff; 
}

.summary-box.money { 
  background: #059669;
  color: #fff; 
}

.summary-box.service { 
  background: #374151;
  color: #fff; 
}

.summary-box-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.summary-box-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.summary-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header-main {
  margin-bottom: 8px;
}

.page-header-main h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.page-header-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.page-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.page-header-title-group {
  display: flex;
  align-items: center;
  gap: 24px;
}
.page-header-desc {
  font-size: 15px;
  color: #222;
}
.page-header-desc small {
  color: #666;
  font-weight: 400;
}

.search-top .tbl-form tr:first-child td input[type="text"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.tbl-form tr td > .chk-group {
  display: flex;
  align-items: center;
}
.tbl-form tr td {
  vertical-align: middle;
}

.address-group {
  display: flex;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.address-group-row1 {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.address-group-row2 {
  display: flex;
  gap: 6px;
  align-items: center;
}

.postal-code-input {
  width: 80px !important;
  flex-shrink: 0;
  min-width: 80px !important;
}

.address-main-input {
  flex: 1 !important;
  width: 50% !important;
  min-width: 0 !important;
}

.address-detail-input {
  flex: 1 !important;
  width: 50% !important;
  min-width: 0 !important;
}

.business-info-input {
  width: 95%;
}

.full-width-input {
  width: 100%;
}

.section-title {
  font-weight: 600;
  color: #3b6db3;
  font-size: 16px;
  margin-bottom: 6px;
  margin-top: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 6px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.btn-spacing-left {
  margin-left: 8px;
}

.btn-spacing-left-sm {
  margin-left: 2px;
}

.management-col {
  width: 110px;
}

.btn-container {
  display: flex;
  gap: 5px;
  white-space: nowrap;
  justify-content: flex-end;
}

.tbl-list td .btn-container,
.tbl-form td .btn-container {
  margin-bottom: 0;
}

.detail-section {
  margin-bottom: 16px;
}

.detail-section-large {
  margin-bottom: 24px;
}

.detail-section-xl {
  margin-bottom: 32px;
}

.detail-section-title-large {
  font-weight: 600;
  color: #3b6db3;
  font-size: 18px;
  margin-bottom: 10px;
}

.detail-notice-text {
  color: #e74c3c;
  font-size: 14px;
}

.detail-contract-box {
  border: 1.5px solid #3b6db3;
  background: #fff;
  margin-bottom: 24px;
}

.detail-contract-content {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafbfc;
  padding: 18px 24px;
  font-size: 15px;
  color: #222;
}

.detail-contract-header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.detail-contract-table {
  width: 100%;
  margin-bottom: 10px;
}

.detail-contract-table td:first-child {
  width: 80px;
}

.detail-contract-body {
  margin-bottom: 10px;
}

.detail-contract-note {
  color: #888;
  font-size: 13px;
}

.detail-date-text {
  color: #888;
  font-size: 13px;
  white-space: nowrap;
}

.detail-page-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 18px;
}

.detail-file-col {
  width: 120px;
}

.detail-button-col {
  width: 180px;
  text-align: right;
}

.detail-date-col {
  width: 100px;
  text-align: right;
  color: #888;
  font-size: 13px;
  white-space: nowrap;
  min-width: 100px;
}

.detail-company-col {
  width: 180px;
}

.detail-sign-date-col {
  width: 120px;
}

.detail-verify-col {
  width: 80px;
}

.notification-text {
  width: 100%;
}

/* lnb user */
.lnb-user-info {
  background: #f8f9fa;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.user-greeting {
  margin-bottom: 12px;
}

.greeting-text {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.greeting-sub {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

.user-actions {
  margin-bottom: 12px;
}

.btn-logout {
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-logout:hover {
  background: #b91c1c;
}

.user-date {
  font-size: 13px;
  color: #6b7280;
}

.date-label {
  margin-right: 8px;
}

.date-value {
  font-weight: 500;
  color: #374151;
  }

.lnb-main-menu {
  margin-top: 0;
}

.main-menu-header {
  background: #1e3a8a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
  text-align: center;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu-list .menu-item {
  border-bottom: 1px solid #e5e7eb;
}

.main-menu-list .menu-item > a {
  display: block;
  padding: 12px 18px;
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  transition: all 0.2s;
  position: relative;
  border-left: 4px solid transparent;
}

.main-menu-list .menu-item > a:hover {
  background: #1C72FF ;
  color: #fff;
}

.main-menu-list .menu-item.active > a {
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
}

.main-menu-list .submenu {
  display: block;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu-list .has-submenu.expanded .submenu {
  display: block;
}

.main-menu-list .submenu li {
  border-bottom: 1px solid #e5e7eb;
}

.main-menu-list .submenu li:last-child {
  border-bottom: none;
}

.main-menu-list .submenu li a {
  display: block;
  padding: 8px 24px 8px 32px;
  color: #6b7280;
  text-decoration: none;
  font-size: 12px;
  background: #f9fafb;
  transition: all 0.2s;
  border-left: 3px solid #e5e7eb;
  position: relative;
}

.main-menu-list .submenu li a::before {
  content: "?””";
  position: absolute;
  left: 18px;
  color: #d1d5db;
  font-size: 12px;
}

.main-menu-list .submenu li a:hover {
  background: #e0f2fe;
  color: #0369a1;
  border-left: 3px solid #0ea5e9;
  padding-left: 36px;
}

.main-menu-list .submenu li a:hover::before {
  color: #0ea5e9;
}

.main-menu-list .submenu li.active a {
  background: #0ea5e9;
  color: #ffffff;
  border-left: 3px solid #0284c7;
  font-weight: 600;
  padding-left: 36px;
}

.main-menu-list .submenu li.active a::before {
  color: #ffffff;
}

.main-menu-list .has-submenu > a .arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}

.main-menu-list .has-submenu > a .arrow::before {
  content: "?–¼";
  font-size: 12px;
  color: currentColor;
}

.main-menu-list .has-submenu.expanded > a .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.main-container {
  max-width: 1200px;
  margin: 16px auto 0 auto;
  padding: 0 20px;
}

.info-highlight {
  background: #e2f3ff;
  color: #1565c0;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
  display: inline-block;
}


.input-date-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.date-input-small {
  width: 30% !important;
  min-width: 80px !important;
}

.calendar-icon {
  vertical-align: middle;
}


.pagination-container {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  gap: 4px;
}

.pagination-btn {
  padding: 6px 10px;
  margin: 2px;
}

/* col */
.col-width-10 { width: 10%; }
.col-width-15 { width: 15%; }
.col-width-25 { width: 25%; }


.calendar-widget {
  position: fixed;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 16px;
  min-width: 280px;
  font-family: inherit;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.calendar-nav-btn {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  transition: all 0.2s;
}

.calendar-nav-btn:hover {
  background: #e9ecef;
  color: #333;
}

.calendar-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day-header {
  padding: 8px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f8f9fa;
}

.calendar-day {
  padding: 8px 4px;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day:hover {
  background: #e3f2fd;
}

.calendar-day.other-month {
  color: #ccc;
}

.calendar-day.today {
  background: #fff3cd;
  color: #856404;
  font-weight: 600;
}

.calendar-day.selected {
  background: #3b6db3;
  color: #fff;
  font-weight: 600;
}

.calendar-day.selected:hover {
  background: #2c5aa0;
}


.input-date-group {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}


.tbl-list td:last-child,
.tbl-form td:last-child {
  white-space: nowrap;
}


.info-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.info-section {
  background: #fff;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.info-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.info-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  margin: 0;
}

.info-section-more {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.info-section-more:hover {
  color: #334155;
}




.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.partner-item:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  object-fit: contain;
  border-radius: 6px;
  background: #f8fafc;
  padding: 4px;
  border: 1px solid #e2e8f0;
}

.partner-logo.small {
  width: 40px;
  height: 40px;
}

.partner-logo.large {
  width: 180px;
  height: 46px;
}

.partner-info {
  flex: 1;
  min-width: 0;
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 4px;
  text-align: left;
}

.partner-contact {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
  text-align: left;
}

.main-content {
  flex: 1;
}





.notification-box .notification-text p {
  font-size: 14px;
  margin-bottom: 4px;
}

.notification-box .notification-text ul li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 12px;
}






.browser-login-page {
  background: #f8f9fa;
}

.browser-login-page .main-content {
  flex: 1;
  padding: 40px 20px;
  margin-top: 72px; 
}

.browser-login-container {
  max-width: 1200px;
}


.login-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.login-left {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.login-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}


.login-left .btn-secondary {
  margin-top: auto;
}


.browser-login-page .btn-secondary {
  padding: 16px 20px;
}

.login-right {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.warning-section {
  margin-bottom: 30px;
}

.warning-content {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.warning-text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.warning-highlight {
  color: #1e3a8a;
  font-weight: 600;
}

.guide-section {
  margin-bottom: 30px;
  text-align: center;
}

.simple-login-section {
  margin-top: auto;
}

@media (max-width: 768px) {
  .login-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .browser-login-container {
    padding: 20px 10px;
  }
  
  .login-left,
  .login-right {
    padding: 30px 20px;
  }
}


.user-card-sidebar {
  margin-top: auto;
  padding: 12px;
}

.user-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-card-header {
  margin-bottom: 12px;
}

.user-info {
  text-align: left;
}

.user-company {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 3px;
}

.user-greeting {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
}

.user-card-buttons {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.user-card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
  font-size: 11px;
}

.date-label {
  color: #6b7280;
  font-weight: 500;
}

.date-value {
  color: #374151;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* tabs */
.detail-tabs {
  display: flex;
  border-bottom: 2px solid #1e3a8a;
  margin-bottom: 20px;
  margin-top: 20px;
}

.detail-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 8px;
}

.detail-tab:hover {
  color: #1e3a8a;
  background: #f8f9fa;
}

.detail-tab.active {
  color: #ffffff;
  font-weight: 600;
  background: #1e3a8a;
  position: relative;
  border-radius: 8px 8px 0 0;
  z-index: 10;
}

.detail-tab-content {
  margin-top: 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* step */
.progress-steps {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.step {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.step-number {
  width: 20px;
  height: 20px;
  background: #6b7280;
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

.step-content {
  text-align: center;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.step-date {
  font-size: 14px;
  color: #1e3a8a;
  font-weight: 700;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  margin-top: 4px;
  display: inline-block;
}

.step.completed {
  background: #dbeafe;
  border-color: #3b82f6;
}

.step.completed .step-number {
  background: #3b82f6;
}

.step.completed .step-title {
  color: #1e3a8a;
}

.step.completed .step-date {
  color: #ffffff;
  background: #3b82f6;
  border-color: #2563eb;
  font-weight: 700;
}

.step.current {
  background: #fef3c7;
  border-color: #f59e0b;
}

.step.current .step-number {
  background: #f59e0b;
}

.step.current .step-title {
  color: #d97706;
}

.step.current .step-date {
  color: #ffffff;
  background: #f59e0b;
  border-color: #d97706;
  font-weight: 700;
}

/* ´Ü°èº° »ö»ó ½ºÅ¸ÀÏ - ³×ÀÌºñ¡æºí·ç¡æ³ì»ö 3»ö ±×¶óµ¥ÀÌ¼Ç */
.step.step-1 {
  background: #e0e7ff;
  border-color: #1e3a8a;
}

.step.step-1 .step-number {
  background: #1e3a8a;
}

.step.step-1 .step-title {
  color: #1e3a8a;
}

.step.step-1 .step-date {
  color: #ffffff;
  background: #1e3a8a;
  border-color: #1e40af;
}

.step.step-2 {
  background: #e1eaff;
  border-color: #2d5eb0;
}

.step.step-2 .step-number {
  background: #2d5eb0;
}

.step.step-2 .step-title {
  color: #2d5eb0;
}

.step.step-2 .step-date {
  color: #ffffff;
  background: #2d5eb0;
  border-color: #2563eb;
}

.step.step-3 {
  background: #dbeafe;
  border-color: #3b82f6;
}

.step.step-3 .step-number {
  background: #3b82f6;
}

.step.step-3 .step-title {
  color: #3b82f6;
}

.step.step-3 .step-date {
  color: #ffffff;
  background: #3b82f6;
  border-color: #2563eb;
}

.step.step-4 {
  background: #dcf5ea;
  border-color: #1f7f5f;
}

.step.step-4 .step-number {
  background: #1f7f5f;
}

.step.step-4 .step-title {
  color: #1f7f5f;
}

.step.step-4 .step-date {
  color: #ffffff;
  background: #1f7f5f;
  border-color: #047857;
}

.step.step-5 {
  background: #d1fae5;
  border-color: #059669;
}

.step.step-5 .step-number {
  background: #059669;
}

.step.step-5 .step-title {
  color: #059669;
}

.step.step-5 .step-date {
  color: #ffffff;
  background: #059669;
  border-color: #047857;
}

/* popup */
.popup-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

/* ÆË¾÷ ÄÁÅ×ÀÌ³Ê ½ºÅ¸ÀÏ º¯Çü */
.popup-container-compact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 10px;
  min-height: auto !important;
  height: auto !important;
}

.popup-header {
  background: #f8f9fa;
  padding: 16px 20px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.popup-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}

.popup-content {
  border-radius: 0 0 8px 8px;
  padding: 20px;
}

/* ÆË¾÷ ÄÜÅÙÃ÷ ½ºÅ¸ÀÏ º¯Çü */
.popup-content-compact {
  border-radius: 0 0 8px 8px;
  padding: 10px;
}

/* ÆË¾÷ ÆäÀÌÁö¿ë ½ºÅ¸ÀÏ */
html.popup-page {
  min-height: auto !important;
  height: auto !important;
}

body.popup-page {
  min-height: auto !important;
  height: auto !important;
  overflow: auto !important;
}

.popup-page .wrap {
  min-height: auto !important;
  height: auto !important;
}

/* ÆË¾÷ ³» Á¦¸ñ ½ºÅ¸ÀÏ */
.popup-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #1e3a8a;
  border-bottom: 2px solid #1e3a8a;
  padding-bottom: 8px;
}

.popup-title-section {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* ÆË¾÷ ³» ¾ÆÀÌÄÜ ½ºÅ¸ÀÏ */
.popup-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}





.highlight-blue {
  color: #3b82f6;
  font-weight: 600;
}

.highlight-red {
  color: #dc2626;
  font-weight: 600;
}

.highlight-desc {
  color: #dc2626;
  font-size: 15px;
  font-weight: 600;
}

.highlight-desc-blue {
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 600;
}

.popup-buttons {
  text-align: center;
}

.popup-content-text {
  margin-bottom: 16px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 6px;
  line-height: 1.6;
}

.popup-content-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-content-text ul li {
  padding: 2px 0;
  padding-left: 16px;
  position: relative;
  color: #374151;
  font-size: 14px;
  line-height: 1.3;
}

.popup-content-text ul li:before {
  content: "-";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

.popup-content-text ul li:last-child {
  padding-bottom: 0;
}


/* space */
.w-3 { width: 3% !important; }
.w-5 { width: 5% !important; }
.w-8 { width: 8% !important; }
.w-10 { width: 10% !important; }
.w-12 { width: 12% !important; }
.w-15 { width: 15% !important; }
.w-20 { width: 20% !important; }
.w-22 { width: 22% !important; }
.w-25 { width: 25% !important; }
.w-30 { width: 30% !important; }
.w-35 { width: 35% !important; }
.w-40 { width: 40% !important; }
.w-45 { width: 45% !important; }

.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.td-left { text-align: left !important; }
.td-right { text-align: right !important; }
.td-center { text-align: center !important; }

.w-px-50 { width: 50px !important; }
.w-px-60 { width: 60px !important; }
.w-px-70 { width: 70px !important; }
.w-px-80 { width: 80px !important; }
.w-px-100 { width: 100px !important; }
.w-px-120 { width: 120px !important; }
.w-px-150 { width: 150px !important; }
.w-px-180 { width: 180px !important; }
.w-px-200 { width: 200px !important; }
.w-px-250 { width: 250px !important; }
.w-px-300 { width: 300px !important; }

.min-w-px-100 { min-width: 100px !important; }
.min-w-px-120 { min-width: 120px !important; }
.min-w-px-150 { min-width: 150px !important; }
.min-w-px-200 { min-width: 200px !important; }
.min-w-px-250 { min-width: 250px !important; }

.max-w-px-100 { max-width: 100px !important; }
.max-w-px-150 { max-width: 150px !important; }
.max-w-px-200 { max-width: 200px !important; }
.max-w-px-250 { max-width: 250px !important; }
.max-w-px-300 { max-width: 300px !important; }

.w-auto { width: auto !important; }

.table-fixed { table-layout: fixed !important; }
.table-auto { table-layout: auto !important; }

.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }

.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }

.ml-10 { margin-left: 10px !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-25 { padding-bottom: 25px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }

.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-25 { padding-top: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }

.file-size {
  color: #666;
  margin-left: 10px;
}

.link-blue {
  color: #1565c0;
}





.notice-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.notice-box h4 {
  color: #0366d6;
  font-weight: bold;
  margin: 0 0 15px 0;
  font-size: 16px;
}

.notice-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-box ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #374151;
}

.notice-box ul li:last-child {
  margin-bottom: 0;
}

input[readonly] {
  background-color: #f1f3f4 !important;
  color: #888 !important;
  border-color: #e0e0e0 !important;
  cursor: not-allowed !important;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.gap-8 {
  gap: 8px !important;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.align-items-start {
  align-items: flex-start !important;
}

.tbl-vertical th[rowspan] {
  border-right: 1px solid #e0e0e0 !important;
}

/* ¼­ºê¸ÞÀÎ ÆäÀÌÁö °øÁö»çÇ× Àü¿ë ½ºÅ¸ÀÏ */
.submain-notice-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  padding: 0;
  height: 300px;
}

.submain-notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
}

.submain-notice-header .info-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.submain-notice-list {
  display: flex;
  flex-direction: column;
  padding: 6px 20px 20px 20px;
  gap: 0;
  flex: 1;
  overflow: hidden;
}

.submain-notice-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dotted #d1d5db;
  transition: all 0.2s ease;
  gap: 16px;
}

.submain-notice-item:last-child {
  border-bottom: none;
}

.submain-notice-title {
  flex: 1;
  min-width: 0;
}

.submain-notice-title a {
  color: #111827;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.submain-notice-title a:hover {
  color: #1e3a8a;
}

.submain-notice-date {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
  text-align: right;
}

.submain-notice-more {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #3b82f6;
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 500;
  text-decoration: none;
}

.submain-notice-more:hover {
  color: #1e40af;
}

.notification-checkbox-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-warning {
  margin-top: 10px;
  color: #dc2626;
  font-size: 13px;
}

.notice-info {
  margin-top: 10px;
  color: #6b7280;
  font-size: 14px;
}

/* ·Îµù °ü·Ã ½ºÅ¸ÀÏ */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #1e3a8a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Ä¶¸°´õ Àü¿ë ·Îµù ½ºÅ¸ÀÏ */
.calendar-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 8px;
}

.calendar-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.calendar-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #1e3a8a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.calendar-loading-text {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

/* ·Îµù »óÅÂÀÏ ¶§ ¿ä¼Ò ½ºÅ¸ÀÏ */
.loading {
  position: relative;
  pointer-events: none;
}

.loading * {
  opacity: 0.7;
}

/* ÄÁÅÙÃ÷ ¿µ¿ª ·Îµù ½ºÅ¸ÀÏ */
.content-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 249, 250, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.content-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #1e3a8a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.code-example {
  background: #f1f5f9;
  border-left: 4px solid #1e3a8a;
  padding: 16px;
  margin-top: 20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.5;
}

.code-example pre {
  margin: 0;
  white-space: pre-wrap;
}

/* ÆÄÀÏ ¾÷·Îµå °ü·Ã ½ºÅ¸ÀÏ */
.file-upload-container {
  display: flex;
  flex: 1;
  min-width: 400px;
}



.file-input:focus {
  outline: none;
}

.file-name {
  font-size: 13px;
  color: #6b7280;
  padding: 0;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: nowrap;
  line-height: 32px;
  flex: 1;
  min-width: 0;
  display: none;
}

.file-name.has-file {
  color: #059669;
  font-weight: 500;
  display: block;
}

.file-buttons {
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.file-buttons.show {
  display: flex;
}

.file-buttons button {
  padding: 4px 13px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Å×ÀÌºí ³» ÆÄÀÏ ¾÷·Îµå Á¤·Ä */
.tbl-vertical td.flex-between {
  align-items: center;
  gap: 12px;
  vertical-align: middle;
  padding: 8px 12px;
}


/* ±âÁ¸ ÆÄÀÏ °ü·Ã ½ºÅ¸ÀÏ°ú ÅëÇÕ */
.tbl-vertical .file-container,
.tbl-horizontal .file-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.file-container .file-buttons {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.tbl-vertical .file-name,
.tbl-horizontal .file-name {
  margin-right: 10px;
}

.tbl-vertical .btn-spacing,
.tbl-horizontal .btn-spacing {
  margin-left: 10px;
}

.tbl-vertical .notice-row,
.tbl-horizontal .notice-row {
  background: #f8f9fa;
  color: #dc2626;
  text-align: center;
  height: 40px;
}

.tbl-list tbody tr {
  transition: all 0.2s ease;
  cursor: pointer;
}

.tbl-list tbody tr:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 8px rgba(59, 109, 179, 0.1);
}

.tbl-list.no-hover tbody tr {
  cursor: default;
}

.tbl-list.no-hover tbody tr:hover {
  background-color: transparent;
  box-shadow: none;
}

/* ¾Ë¸² ¹Ú½º */
.success-notification-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
  border-radius: 8px;
  padding: 16px 24px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.success-notification-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.success-notification-box .notification-text {
  color: #1565c0;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  text-align: center;
}



/* ÆË¾÷ ·¹ÀÌ¾Æ¿ô Å¬·¡½º */
.popup-layout-container {
  height: 700px;
  min-height: 700px;
  display: flex;
  flex-direction: column;
}

.popup-layout-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.popup-table-area {
  height: 400px;
  min-height: 400px;
  overflow-y: auto;
}

.popup-table-full-width {
  width: 100%;
}

.popup-pagination-fixed {
  flex-shrink: 0;
}

.popup-buttons-bottom {
  flex-shrink: 0;
  padding: 15px 0;
  text-align: center;
}
