@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"),
    url("../font/Pretendard-Bold.subset.woff2") format("woff2"),
    url("../font/Pretendard-Bold.subset.woff") format("woff");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"),
    url("../font/Pretendard-Medium.subset.woff2") format("woff2"),
    url("../font/Pretendard-Medium.subset.woff") format("woff");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"),
    url("../font/Pretendard-Regular.subset.woff2") format("woff2"),
    url("../font/Pretendard-Regular.subset.woff") format("woff");
}
/* Reset */
* {
  outline: 0 !important;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
blockquote,
pre,
code,
address,
ul,
ol,
li,
menu,
nav,
section,
article,
aside,
dl,
dt,
dd,
table,
thead,
tbody,
tfoot,
label,
caption,
th,
td,
form,
fieldset,
legend,
hr,
input,
button,
textarea,
object,
figure,
figcaption {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
}
html {
  font-size: 62.5%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  width: 100%;
  background: #fff;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 1.6rem;
  box-sizing: border-box;
}
body,
input,
select,
textarea,
button {
  border: none;
  font-size: 1.5rem;
  font-family: "Pretendard", "Dotum", sans-serif;
  color: #666;
}
ul,
ol,
li {
  list-style: none;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
img,
fieldset {
  border: 0;
}
address,
cite,
code,
em {
  font-style: normal;
  font-weight: normal;
}
label,
img,
input,
select,
textarea,
button {
  vertical-align: middle;
}
.hide,
caption,
legend {
  line-height: 0;
  font-size: 1px;
  overflow: hidden;
}
hr {
  display: none;
}
main,
header,
section,
nav,
footer,
aside,
article,
figure {
  display: block;
}
a {
  color: #fff;
  text-decoration: none;
}

:root {
  --point-color: #2d58b6;
  --second-color: #3074f0;
  --dark-gray: #515358;
  --red-color: #f00;
  --white-color: #fff;
}

/* Form */
textarea {
  border: 1px solid #dbdbdb;
}
select {
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  color: #666;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  box-sizing: border-box;
}
input[type="tel"],
input[type="time"],
input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
input[type="file"],
input[type="url"],
input[type="number"],
input[type="date"],
textarea {
  width: 100%;
  height: 4rem;
  font-size: 1.6rem;
  color: #373737;
  border: 1px solid #ddd;
  background: #fff;
  text-indent: 5px;
  border-radius: 2px;
  transition: all 0.5s;
  vertical-align: middle;
  box-sizing: border-box;
}
input::-webkit-input-placeholder {
  color: #b5b5b5;
  line-height: 100%;
}
textarea {
  padding: 5px 0;
  border-radius: 2ox;
}
select:focus,
textarea:focus,
input:focus {
  border-color: var(--point-color);
}

input[type="tel"][readonly],
input[type="text"][readonly],
input[type="password"][readonly],
input[type="email"][readonly],
input[type="search"][readonly],
input[type="tel"][disabled],
input[type="text"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="email"][disabled] {
  background: #eaeaea;
  border-color: #c0c0c0;
  color: #666;
  -webkit-appearance: none;
  font-size: 12px;
}
textarea[readonly],
textarea[disabled] {
  padding: 11px;
  font-size: 16px;
  color: #666;
  font-weight: normal;
  line-height: 140%;
  height: 78px;
  background: #eaeaea;
  border: 1px solid #c0c0c0;
}

label.radiobox {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
label.radiobox input {
  display: none;
}
label.radiobox input + i {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  box-sizing: border-box;
}
label.radiobox input:checked + i {
  border-color: var(--point-color);
}
label.radiobox input:checked + i:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--point-color);
}

label.checkbox {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
label.checkbox input {
  display: none;
}
label.checkbox input + i {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border: 1px solid #dbdbdb;
  border-radius: 0.4rem;
  box-sizing: border-box;
  background: #fff;
}
label.checkbox input:checked + i {
  border-color: var(--point-color);
}
label.checkbox input:checked + i:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  display: inline-block;
  width: 10px;
  height: 6px;
  border-radius: 0.2rem;
  border: 4px solid var(--point-color);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}


button {
  height: 4rem;
  width: 8rem;
  background: var(--point-color);
  color: #fff;
  border: 1px solid var(--point-color);
  border-radius: 0.4rem;
  cursor: pointer;
  justify-content: center;
  display: inline-block; 
  margin: 0;
}

.button-a {
  height: 3rem;
  width: 5rem;
  background: var(--point-color);
  color: #fff;
  border: 1px solid var(--point-color);
  border-radius: 0.4rem;
  cursor: pointer;
  justify-content: center;
  display: flex;
  margin: 0;
}

button.btn_white {
  background: #fff;
  color: var(--point-color);
  border: 1px solid var(--point-color);
}
button.btn_gray {
  background: var(--dark-gray);
  color: #fff;
  border: 1px solid var(--dark-gray);
}
button.btn_red {
  background: #f00;
  color: var(--white-color);
  border: 1px solid var(--red-color);
}
/* 
button:hover {
  background: var(--second-color);
  border: 1px solid var(--point-color);
  color: #fff;
} */

.btns button {
  margin-right: 1.5rem;
}
.btns button:last-child {
  margin-right: 0;
}

/* 로그인 */
.login_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}
.login_wrap > div {
  width: 1600px;
}
.login_wrap h1 {
  text-align: center;
}
.login_wrap h2 {
  font-size: 4rem;
  color: #333;
  font-weight: 700;
}

.login_wrap section {
  display: flex;
  gap: 25px;
  width: 100%;
  margin-top: 60px;
}
.login_wrap article {
  flex: 1 1 0;
  height: 42.5rem;
  padding: 4rem;
  border: 1px solid #dbdbdb;
  border-radius: 1.6rem;
  box-sizing: border-box;
  overflow: hidden;
}
.login_wrap article.img_only {
  padding: 0;
  border-radius: 1.6rem;
  border: 1px solid #dbdbdb;
}
.login_wrap article.img_only img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  display: block;
}
.img_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.6rem;
}
.img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.login_wrap article.welcome {
  width: 50%;
  background: #ecfdff;
}
.login_wrap article.notice {
  width: 50%;
}
.login_wrap h3 {
  margin: 3rem 0 4rem;
  font-size: 2.2rem;
  color: #2d58b6;
  font-weight: 700;
}
.login_wrap .login input {
  height: 5rem;
  margin-bottom: 1.4rem;
  border-radius: 2.8rem;
}
.login_wrap .login input:nth-child(2) {
  margin-bottom: 1.7rem;
}
.login_wrap .login .btns {
  display: flex;
  margin-top: 1.2rem;
}
.login_wrap .login button {
  height: 5.6rem;
  border-radius: 2.8rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}
.login_wrap .login button:first-child {
  width: 60%;
  margin-right: 0;
}
.login_wrap .login button:last-child {
  width: 40%;
}

.login_wrap h4 {
  position: relative;
  margin-bottom: 2.8rem;
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
}
.login_wrap .notice li {
  display: flex;
  justify-content: space-between;
  line-height: 3.6rem;
  color: #555;
}
.login_wrap .notice li a {
  color: #555;
  font-weight: 600;
}
.login_wrap .notice li a:hover {
  text-decoration: underline;
}
.login_wrap .notice li span {
  color: #999;
  font-size: 1.4rem;
}
.tx-error {
  color: #c21818;
  font-size: 0.9em;
  padding: 2px 5px;
}
.login_wrap .month {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 500;
}
.login_wrap .calendar table {
  margin-top: 0 rem;
  border: 0;
}

#reg_popup_wrap {
  position: absolute;
  background-color: lightblue;
}

#presurvey_popup_wrap {
  position: absolute;
  background-color: lightblue;
}

footer {
  margin-top: 0rem;
  color: #aaa;
  font-size: 1.4rem;
  text-align: center;
  z-index:1;
}

/* 왼쪽메뉴 */
#wrap {
  display: flex;
}
#left {
  width: 200px;
  height: 120vh;
  background: #2d58b6;
  z-index:100;
}
#left h1 {
  display: flex;
  align-items: center;
  height: 80px;
  margin-left: 10px;
}
#left .info {
  display: flex;
  align-items: center;
  height: 70px;
  padding-left: 20px;
  background: #4d70bd;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}
.gnb a {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 20px;
  border-bottom: 1px solid #4c6fbb;
  color: #fff;
  font-size: 1.6rem;
}
.gnb a.active {
  color: #2d58b6;
  background: #fff;
}
.gnb a:hover {
  color: #2d58b6;
  background: #a9d6f0;
}

/* 오른쪽 내용 */
#right {
  max-width: 85%;
  width: calc(100% - 250px);
  height: calc(100vh - 80px);
  margin: 40px auto;
}
#right .tit {
  margin-bottom: 40px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #222;
}
.row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.row > * {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
}
.srch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.srch_inline {
  display: flex;
  align-items: center;
  gap: 10px; /* 버튼 간격 유지 */
  flex-wrap: nowrap; /* 버튼 줄바꿈 방지 */
}

.align_both {
  justify-content: space-between;
}
.align_center {
  justify-content: center;
  text-align: center;
}
.align_left {
  justify-content: flex-start;
  text-align: left;
}
.w10 {
  width: 10%;
}
.w20 {
  width: 20%;
}
.w30 {
  width: 30%;
}
.w50 {
  width: 50%;
}
.w70 {
  width: 70%;
}
.w80 {
  width: 80%;
}
.w100 {
  width: 100%;
}
.mt20 {
  margin-top: 20px;
}

.tab li {
  display: inline-block;
  padding: 20px 30px;
  color: #888;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.tab li.on {
  color: #2d58b6;
  border-color: #2d58b6;
}

table {
  border-top: 1px solid #2d58b6;
}
table th {
  padding: 14px 0;
  border: 1px solid #e6e6e6;
  border-bottom: 1px solid #ddd;
  border-left: 0;
  background: #f7f9ff;
  text-align: center;
  color: #111;
  font-weight: 500;
  font-size: 1.6rem;
}
table tr:first-child th {
  border-top: 0;
}
table td {
  padding: 2px 2px;
  border: 1px solid #e6e6e6;
  border-bottom: 1px solid #ddd;
  border-left: 0;
  text-align: center;
  align-items: center;
  vertical-align: middle;
  height:30px;
}

table td a {
  padding: 13px 5px;
  text-align: center;
  color: #888;
}

table a {
  padding: 13px 5px;
  text-align: center;
  color: #888;
}

table th[rowspan]:last-child,
table.tbl th:last-child,
table td:last-child {
  border-right: 1;
}
table tr:hover {
  background: #f6f6f6;
}

.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.paging a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #999;
}
.paging a.on {
  border-radius: 4px;
  color: #fff;
  background: #2d58b6;
}
.paging a.first,
.paging a.last {
  background: url(../img/ico_arrowD.png) no-repeat center center;
  font-size: 0;
}
.paging a.prev,
.paging a.next {
  background: url(../img/ico_arrow.png) no-repeat center center;
  font-size: 0;
}
.paging a.next,
.paging a.last {
  transform: rotate(180deg);
}

/* 팝업 */
.popup_wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.popup_wrap:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.popup {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 100;
  padding: 50px;
  border-radius: 16px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.popup .pop_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup .tit {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
}
.popup .btn_close {
  width: 25px;
  height: 25px;
  background: transparent url(/img/ico_close.png) no-repeat;
  border: 0;
  font-size: 0;
}
.popup .pop_content {
  margin: 50px 0;
}
.popup .pop_content .row {
  gap: 70px;
  margin-bottom: 15px;
}
.popup .pop_content .row label {
  width: 100%;
}

/* 로그인 */
.register_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width:100%;
}

.register_wrap .section img {
  position:fixed;
  top:0;
  align: center;
  margin-top: 20px; 
  z-index:999;
}
.register_wrap .section .welcome h2 {
  font-size: 4rem;
  color: #333;
  font-weight: 700;
  padding-top:40px;
}

.register_wrap .section {
  display: flex;
  gap: 25px;
  width: 100%;
  margin-top: 60px;
  box-shadow: 0 14px 16px rgba(0, 0, 0, 0.1); /* 약간의 그림자 */  
  border-radius: 1.6rem;

}
.register_wrap article {
  height: 85rem;
  padding: 4rem;
  border: 1px solid #dbdbdb;
  border-radius: 1.6rem;
}
.register_wrap article.welcome {
  width: 100%;
  background: #ecfdff;
  z-index:1000;
}

.register_wrap h3 {
  margin: 3rem 0 4rem;
  font-size: 2.2rem;
  color: #2d58b6;
  font-weight: 700;
}

.register_wrap .register input:nth-child(2) {
  margin-bottom: 1.7rem;
}
.register_wrap .register .btns {
  display: flex;
  margin-top: 1.2rem;
}
.register_wrap .register button {
  height: 5.6rem;
  border-radius: 2.8rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}
.register_wrap .register button:first-child {
  width: 60%;
  margin-right: 0;
}
.register_wrap .register button:last-child {
  width: 40%;
}

.register_wrap h4 {
  position: relative;
  margin-bottom: 2.8rem;
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
}

.register_wrap input[type="tel"],
.register_wrap input[type="time"],
.register_wrap input[type="text"],
.register_wrap input[type="password"],
.register_wrap input[type="search"],
.register_wrap input[type="email"],
.register_wrap input[type="file"],
.register_wrap input[type="url"],
.register_wrap input[type="number"],
.register_wrap input[type="date"],
.register_wrap select,
.register_wrap textarea {
  width: 100%;
  height: 4rem;
  font-size: 1.6rem;
  color: #373737;
  border: 1px solid #ddd;
  background: #fff;
  text-indent: 5px;
  border-radius: 2px;
  transition: all 0.5s;
  vertical-align: middle;
  box-sizing: border-box;
  text-align:left;
  align-items: right;
}

.register_wrap input[type="label"]{
  text-align:left;
  width:20%;
}

.register_wrap span{
  color:#ff0000;
}

.register_wrap .register input,
.register_wrap .register select {
  height: 5rem;
  margin-bottom: 1.4rem;
  border-radius: 1.3rem;
}


.register_wrap .register label {
  height: 15rem;
  border-radius: 1.3rem;
  margin-bottom: 12rem;
}

.inline-container {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 간격 */
}
.inline-container form {
  margin: 0;
}

.pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-top: 4rem;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
}

.pagination li.active a {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}


.content-container {
  margin: 20px 0;
}

/* 읽기 전용 콘텐츠 스타일 */
.readonly-content {
  width: 90%;
  height: 60vh;  /* 원하는 높이 조정 */
  padding: 3px;
  background-color: #f8f9fa;  /* 밝은 배경색 */
  border: 1px solid #ccc;  /* 테두리 */
  border-radius: 5px;  /* 모서리 둥글게 */
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #333;
  overflow-y: auto;  /* 수직 스크롤 */
  white-space: pre-wrap;  /* 줄 바꿈 유지 */
  line-height: 1.6;
}

.readonly-content p {
  margin-bottom: 10px;
}

.readonly-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}

.readonly-content a {
  color: #007bff;
  text-decoration: none;
}

.readonly-content a:hover {
  text-decoration: underline;
}

  /* 이전글/다음글 네비게이션 */
  .navigation-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid #ddd; /* 구분선 */
}

.navigation-links a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.navigation-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.listbtn {
  height:2rem;
}


.attbtn {
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    padding: 8px 16px;
    color: #fff;
    background-color: #d1430a;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.attbtn:hover {
    background-color: #cf154d;
}

.attbtn-secondary {
    background-color: #1945c0;
}

.attbtn-secondary:hover {
    background-color: #5a6268;
}

.attbtn + .btn {
    margin-left: 10px; /* 버튼 간격 */
}

.attbtn2 {
  display: inline-block;
  font-size: 9px;
  font-weight: bold;
  padding: 8px 10px;
  color: #fff;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  height:2.6rem;
}

.attbtn2:hover {
  background-color: #0fc12c;
}


/* Flash 메시지 컨테이너 */
#flash-container {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 400px;
  z-index: 1000;
  text-align: center;
}

/* Flash 메시지 스타일 */
.flash-message {
  padding: 15px 20px;
  margin: 5px 0;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  color: white;
  animation: fadeIn 0.5s ease-in-out;
}

.alert-success {
  background-color: #28a745;
  color: white;
}

.alert-danger {
  background-color: #dc3545;
  color: white;
}

.alert-warning {
  background-color: #ffc107;
  color: #212529;
}

.alert-info {
  background-color: #17a2b8;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


/* Modal 기본 스타일 */
.modal {
  display: none; /* 기본적으로 숨김 */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal_confirm {
  display: none; /* 기본적으로 숨김 */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal 내용 */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  border-radius: 10px;
}

/* 닫기 버튼 */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/******* ***********/
/* 테이블 전체를 감싸는 컨테이너 */
.table-wrapper {
  max-width: 100%;
  max-height: 600px; /* 테이블의 최대 높이 */
  overflow: auto; /* 가로 및 세로 스크롤 모두 활성화 */
  border: 1px solid #ddd;
  margin-top: 1rem;
  position: relative;
}

/* 테이블 스타일 */
#excel_data_table {
  border-collapse: collapse;
  width: 100%; /* 테이블 너비 100% */
  table-layout: auto; /* 고정된 셀 너비 */
}

#excel_data_table th,
#excel_data_table td {
  border: 1px solid #ddd; /* 셀 경계선 */
  padding: 8px;
  text-align: left;
  white-space: nowrap; /* 텍스트 줄바꿈 방지 */
  overflow: hidden; /* 넘친 텍스트 숨김 */
  text-overflow: ellipsis; /* 넘친 텍스트 생략 부호(...) 표시 */
}

/* 헤더 스타일 */
#excel_data_table thead th {
  position: sticky;
  top: 0; /* 상단 고정 */
  background-color: #f8f9fa; /* 헤더 배경색 */
  z-index: 1;
}

/* 스크롤바 스타일 */
.table-wrapper::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 10px;
}

#center_name {
  color: #333; /* 기본 글자색 설정 */
  background-color: #fff; /* 배경색 설정 */
  border: 1px solid #ccc; /* 테두리 */
  padding: 8px;
  font-size: 16px; /* 글자 크기 */
  border-radius: 4px;
}

/* 알림 컨테이너 스타일 */
#notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px; /* 알림 창 너비 */
  max-height: 300px; /* 최대 높이 설정 */
  overflow-y: auto;
  z-index: 1000;
}

/* 알림 상자 스타일 */
.notification {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.4;
}

/* 알림 내용 텍스트 */
.notification-content {
  color: #555;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 최대 2줄 표시 */
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

/* 버튼 컨테이너 */
.notification-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 4px; /* 버튼 간격 */
}

/* 버튼 스타일 */
.notification-buttons button {
  background-color: #ee3a03; /* 기본 확인 버튼 색상 */
  color: white;
  border: none;
  padding: 5px 10px; /* 패딩 조정 */
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  min-width: 30px; /* 최소 너비 설정 */
}

.notification-buttons button.move {
  background-color: #007BFF; /* 이동 버튼 색상 */
}

.notification-buttons button:hover {
  opacity: 0.9;
}


/* 팝업 배경색 변경 */
.swal-custom-popup {
  background-color: #f5f5f5; /* 연한 회색 */
  border: 2px solid #3c3ce7; /* 경계선 빨간색 */
}

/* 제목 색상 변경 */
.swal-custom-title {
  color: #2e60df; /* 제목 빨간색 */
  font-weight: bold;
  font-size: 16px;
}

/* 확인 버튼 스타일 변경 */
.swal-custom-button {
  background-color: #563ce7; /* 버튼 빨간색 */
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
}

.button-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap; /* 버튼이 한 줄을 유지하도록 설정 */
}

.btn_excel {
  display: inline-block;
  white-space: nowrap; /* 버튼 텍스트가 줄바꿈되지 않도록 설정 */
}

html, body {
  height: 100%;
  margin: 0;
}

#page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#wrap {
  flex: 1; /* 나머지 공간 채움 */
}

/* footer는 그냥 기본 배치 */
footer {
  height: 30px;
  text-align: center;
  font-size: 1.4rem;
  color: #aaa;
  line-height: 30px;
  background: #f8f8f8;
}

.jumbotron-box {
  background-color: #f0f0f5;
  padding: 20px 10px;
  margin: 10px 0;
  border-left: 6px solid #666;
  border-radius: 8px;
  font-size: 18px;
  color: #333;
}
.jumbotron-box h4 {
  margin: 0;
  text-align: center;
  font-weight: 500;
}
