@charset "UTF-8";
@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("../font/PretendardVariable.woff2") format("woff2-variations");
}
body {
  font-family: "Pretendard-Regular";
  background-color: black;
  color: #9ca3af;
  background-image: url("/public/images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 10px 0;
}
body .title {
  background: linear-gradient(270deg, #e8499e, #437ef6, #FFD700, #e8499e);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 1.6rem;
  margin-left: 16px;
  margin-top: 8px;
  animation: gradient-move 3s ease-in-out infinite;
}
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 메뉴 버튼 스타일 */
body .menu-btn {
  color: #9ca3af !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px !important;
  margin: 0 1.5px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: inline-block;
  min-width: 60px;
  text-align: center;
}

/* 네비게이션 컨테이너 가로 정렬 */
body .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

/* 모바일에서도 가로 정렬 유지 */
@media (max-width: 768px) {
  body .navbar-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  body .menu-btn {
    font-size: 0.8rem;
    padding: 4px 8px !important;
    min-width: 45px;
    margin: 0 0.5px;
  }
}

body .menu-btn:hover {
  color: white !important;
  background: linear-gradient(45deg, #e4007f, #2563eb);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(228, 0, 127, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

body .menu-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(228, 0, 127, 0.5);
}
 
/* 활성화된 메뉴 버튼 스타일 */
body .menu-btn.active {
  background: linear-gradient(45deg, #e4007f, #2563eb);
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(228, 0, 127, 0.4);
}

body .menu-btn.active:hover {
  background: linear-gradient(45deg, #d1006b, #1a5bbf);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(228, 0, 127, 0.5);
}

body .hr-gradient {
  border: 0;
  height: 2px; /* 두께 */
  background: linear-gradient(to right, #e8499e, #437ef6);
  border-radius: 2px; /* 라운드 처리(선택) */
  opacity: 1;
}
body .category {
  font-weight: bold;
  margin: 24px 0 16px;
  position: relative;
  padding-left: 16px; /* 세로선 너비만큼 여백 */
}
body .category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  transform: translateY(-50%);
}
body .category-pachi {
  color: #e4007f;
}
body .category-pachi::before {
  background: #e4007f;
}
body .category-reel {
  color: #2563eb;
}
body .category-reel::before {
  background: #2563eb;
}
body .card {
  border: none;
  background-color: #242424;
  color: #9ca3af;
  transition: all 0.3s ease;
  cursor: pointer;
}

body .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #2a2a2a, #333333);
}

/* 카드 배경 호버 효과 */
body .card:hover .card-body {
  background-color: #2a2a2a;
  transform: scale(1.05);
  transition: all 0.3s ease;
  padding: 12px 20px 20px;
}

/* 카드 텍스트 호버 효과 */
body .card:hover .card-text {
  color: #e0e0e0;
  transform: scale(1.02);
  transition: all 0.3s ease;
  font-weight: 500;
}

/* 카드 서브 제목 호버 효과 */
body .card:hover .card-sub-title {
  color: #ffffff;
  transform: scale(1.08);
  transition: all 0.3s ease;
  font-weight: bold;
}

/* 카드 제목 호버 효과 강화 */
body .card:hover .card-title {
  transform: scale(1.03);
  transition: all 0.3s ease;
}

/* 파칭코 카드 호버 효과 */
body .card:hover .pachi-btn {
  background-color: #d1006b !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* 파칭코 카드 특별 효과 */
body .card:hover .pachi-btn {
  background-color: #d1006b !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

body .card:hover .pachi-btn ~ *,
body .card:hover .pachi-btn {
  background: linear-gradient(135deg, rgba(228, 0, 127, 0.1), rgba(228, 0, 127, 0.05));
  transition: all 0.3s ease;
}

/* 릴게임 카드 특별 효과 */
body .card:hover .reel-btn {
  background-color: #1a5bbf !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

body .card:hover .reel-btn ~ *,
body .card:hover .reel-btn {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  transition: all 0.3s ease;
}
body .card .card-body {
  padding: 8px 16px 16px;
}
body .card .pachi-btn {
  background-color: #e4007f !important;
  border-color: #e4007f;
  color: whitesmoke;
  border-radius: 5px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s;
  width: 95%;
  margin: 0 auto;
  display: block;
}
body .card .pachi-btn:hover {
  background-color: #d1006b;
}
body .card .reel-btn {
  background-color: #2563eb !important;
  border-color: #2563eb;
  color: whitesmoke;
  border-radius: 5px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s;
  width: 95%;
  margin: 0 auto;
  display: block;
}
body .card .reel-btn:hover {
  background-color: #1a5bbf;
}
body .card .card-title {
  font-weight: bold;
  margin: 8px 0;
}
body .card .card-sub-title {
  color: white;
  font-weight: bold;
  text-align: center;
  margin: 4px 0 12px;
}

/* 카드 이미지 호버 효과 */
body .card:hover .card-img-top {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* 카드 제목 호버 효과 */
body .card:hover .card-title {
  color: #e4007f !important;
  transition: all 0.3s ease;
}

body .card:hover .card-title[style*="color: #2563eb"] {
  color: #2563eb !important;
}
body .description {
  background: #242424;
  margin: 20px;
  padding: 10px;
  border-radius: 15px;
}
body .description .description-title {
  margin: 0px 0 12px;
  color: #ff5722;
  font-weight: bold;
}

/* 전체 탭에서 섹션 간격 조정 */
body #pills-all .category-reel {
  margin-top: 4rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 파칭코 탭 버튼 스타일 */
body .nav-pills .nav-link[data-bs-target="#pills-pachi"] {
  color: #e4007f;
  background-color: transparent;
  border: 2px solid #e4007f;
  margin-right: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

body .nav-pills .nav-link[data-bs-target="#pills-pachi"]:hover {
  background-color: #e4007f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 0, 127, 0.3);
}

body .nav-pills .nav-link[data-bs-target="#pills-pachi"].active {
  background-color: #e4007f;
  color: white;
  border-color: #e4007f;
  box-shadow: 0 2px 8px rgba(228, 0, 127, 0.4);
}

/* 릴게임 탭 버튼 스타일 */
body .nav-pills .nav-link[data-bs-target="#pills-reel"] {
  color: #2563eb;
  background-color: transparent;
  border: 2px solid #2563eb;
  margin-right: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

body .nav-pills .nav-link[data-bs-target="#pills-reel"]:hover {
  background-color: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

body .nav-pills .nav-link[data-bs-target="#pills-reel"].active {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

/* 전체 탭 버튼 스타일 */
body .nav-pills .nav-link[data-bs-target="#pills-all"] {
  color: #e4007f;
  background: linear-gradient(45deg, #e4007f, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 2px solid;
  border-image: linear-gradient(45deg, #e4007f, #2563eb) 1;
  margin-right: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

body .nav-pills .nav-link[data-bs-target="#pills-all"]:hover {
  background: linear-gradient(45deg, #e4007f, #2563eb);
  color: white;
  -webkit-text-fill-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 0, 127, 0.3);
  border-image: linear-gradient(45deg, #e4007f, #2563eb) 1;
}

body .nav-pills .nav-link[data-bs-target="#pills-all"].active {
  background: linear-gradient(45deg, #e4007f, #2563eb);
  color: white;
  -webkit-text-fill-color: white;
  border-image: linear-gradient(45deg, #e4007f, #2563eb) 1;
  box-shadow: 0 2px 8px rgba(228, 0, 127, 0.4);
}

/* 비활성 상태에서도 텍스트와 테두리가 보이도록 설정 */
body .nav-pills .nav-link[data-bs-target="#pills-all"]:not(.active):not(:hover) {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, #e4007f, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;
  border: 2px solid;
  border-image: linear-gradient(45deg, #e4007f, #2563eb) 1;
}

@media (max-width: 768px) {
  body {
    background-image: url("/public/images/bg_m.jpg");
    background-size: 100%;
    background-position: top;
  }
  body .container {
    padding: 10px;
  }
  body .title {
    font-size: 1.5rem;
    margin-left: 8px;
    margin-top: 2px;
  }
  body .sub-game {
    padding: 0 48px;
  }
  body .category-pachi,
  body .category-reel {
    margin: 8px;
  }
  body .card {
    padding: 15px;
    margin: 8px;
  }
  body .card .card-body {
    padding: 8px 12px;
  }
  body .card .pachi-btn,
  body .card .reel-btn {
    font-size: 1rem;
    padding: 6px 12px;
  }
  body .description {
    margin: 8px;
  }
}

/* 채팅 패널 스타일 */
.chat-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #1a1a1a;
  border-left: 2px solid #e4007f;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.chat-panel.active {
  right: 0;
}

.chat-header {
  background: linear-gradient(45deg, #e4007f, #2563eb);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.chat-header h5 {
  margin: 0;
  font-weight: bold;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #242424;
}

.message {
  margin-bottom: 15px;
  display: flex;
}

.message.user {
  justify-content: flex-end;
}

.message.admin {
  justify-content: flex-start;
}

.message-content {
  max-width: 70%;
  padding: 10px 15px;
  border-radius: 15px;
  position: relative;
}

.message.user .message-content {
  background: linear-gradient(45deg, #e4007f, #2563eb);
  color: white;
  border-bottom-right-radius: 5px;
}

.message.admin .message-content {
  background: #333;
  color: white;
  border-bottom-left-radius: 5px;
}

.message-text {
  margin-bottom: 5px;
  word-wrap: break-word;
}

.message-time {
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: right;
}

.message.admin .message-time {
  text-align: left;
}

.chat-input {
  padding: 15px;
  background: #1a1a1a;
  border-top: 1px solid #333;
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 20px;
  background: #242424;
  color: white;
  outline: none;
}

.chat-input input:focus {
  border-color: #e4007f;
}

.chat-input input::placeholder {
  color: #888;
}

.send-btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #e4007f, #2563eb);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 0, 127, 0.3);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .chat-panel {
    width: 100%;
    right: -100%;
  }
  
  .message-content {
    max-width: 85%;
  }
  
  .chat-input {
    padding: 10px;
  }
  
  .chat-input input {
    padding: 8px 12px;
  }
  
  .send-btn {
    padding: 8px 16px;
  }
}

#notice-popups {
  position: static;
}
.notice-popup {
  position: fixed;
  top: 30px;
  width: 400px;
  z-index: 9999;
  pointer-events: auto;
  background: #0f0f0f;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 0 0 10px 0;
  color: #c31919;
}
.notice-popup .title,
.notice-popup .title span {
  color: #fff !important;
}
.notice-popup .title {
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 8px;
  padding: 0;
  background: none;
  border: none;
  display: block;
  position: static;
  line-height: 1.4;
}
.notice-popup .title span {
  display: inline-block;
  width: 100%;
  word-break: break-all;
  white-space: pre-line;
}
.notice-popup .close-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.notice-popup .close-btn:hover {
  background: #333;
}
.notice-popup .content {
  margin: -30px 20px 15px 20px;
  color: #e0e0e0;
  white-space: pre-line;
}
.notice-popup .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px 0 20px;
  min-height: 40px;
  gap: 10px;
}
.notice-popup input[type="checkbox"] {
  margin-right: 5px;
}
.notice-popup .notice-hide-row {
  margin-top: 16px;
  text-align: left;
  border-top: 3px solid #ffe066;
  padding-top: 24px;
  background: #23272f;
  border-radius: 0 0 8px 8px;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.notice-popup .close-btn {
  position: static;
  margin-bottom: -32px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 16px;
  min-width: 70px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background 0.2s;
}
.notice-popup .close-btn:hover {
  background: #444;
}
.notice-popup .notice-title {
  color: #00e5ff !important;
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: -5px;
  line-height: 1.4;
  word-break: break-all;
  white-space: pre-line;
  border-bottom: 1.5px solid #00e5ff;
  padding-bottom: 0px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
  position: relative;
}
.notice-popup .notice-hide-row label {
  color: #ffb6d5;
}
.notice-popup .close-btn-circle {
  position: absolute;
  right: 0;
  top: 26px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.notice-popup .close-btn-circle:hover {
  background: #555;
}

/* 상단 탭(전체, 파칭코, 릴게임) 버튼 크기 조정 */
.nav-pills .nav-link {
  font-size: 0.95rem;
  padding: 6px 16px;
  min-width: 70px;
}
@media (max-width: 768px) {
  .nav-pills .nav-link {
    font-size: 0.85rem;
    padding: 4px 10px;
    min-width: 50px;
  }
}

/* 환영 문구 애니메이션 */
.welcome-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 38px;
  background: transparent;
  z-index: 1000;
}
.welcome-marquee {
  position: absolute;
  white-space: nowrap;
  right: -100%;
  top: 0;
  font-size: 1.1rem;
  color: #FFD700;
  font-weight: 700;
  padding: 8px 0;
}
@keyframes welcome-marquee-move {
  0% { right: -100%; }
  100% { right: 100vw; }
}

/* 공지/출금내역 박스 */
.notice-box, .withdrawal-box {
  background: #10151b;
  border-radius: 8px;
  border: 1.5px solid #233044;
  padding: 14px 14px 10px 14px;
  margin: -20 0 4px 0;
  min-width: 320px;
  max-width: 100%;
  flex: 1 1 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  position: relative;
  font-size: 0.98rem;
  min-height: 210px;
}
.notice-box .box-title, .withdrawal-box .box-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-box .plus-btn, .withdrawal-box .plus-btn {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  margin-left: 8px;
  transition: color 0.2s;
}
.notice-box .plus-btn:hover, .withdrawal-box .plus-btn:hover {
  color: #FFD700;
}

.notice-list, .withdrawal-list {
  width: 100%;
}
.notice-row, .withdrawal-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #233044;
  padding: 7px 0 6px 0;
  font-size: 0.98rem;
}
.notice-row:last-child, .withdrawal-row:last-child {
  border-bottom: none;
}
.notice-title-text {
  flex: 1 1 0;
  color: #e0e0e0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  max-width: 220px;
}
.notice-title-text:hover {
  color: #3b82f6;
  text-decoration: none;
}
.notice-date {
  color: #bdbdbd;
  font-size: 0.93rem;
  margin-left: 18px;
  min-width: 90px;
  text-align: right;
}

/* 출금내역 행 스타일 */
.withdrawal-id {
  flex: 0 0 120px;
  color: #bdbdbd;
  font-size: 0.97rem;
  text-align: left;
}
.withdrawal-amount {
  flex: 0 0 120px;
  color: #FFD700;
  font-size: 1.01rem;
  font-weight: 600;
  text-align: right;
  margin-right: 0px;
}
.withdrawal-status {
  flex: 0 0 90px;
  text-align: center;
  margin-right: 0px;
}
/* 출금내역 상태 버튼 통합 스타일 */
.status-btn {
  display: inline-block;
  background: #ec4899;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 18px 2px 18px;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 1px 4px rgba(236,72,153,0.15);
} 
.status-btn.ing {
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 1px 4px rgba(37,99,235,0.15);
}
.status-btn-small {
  display: inline-block;
  background: #ec4899;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 1.5px 4px 1.5px 4px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: 0 1px 4px rgba(236,72,153,0.13);
}
.status-btn-small.ing {
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 1px 4px rgba(37,99,235,0.13);
}
.withdrawal-date {
  flex: 0 0 110px;
  color: #bdbdbd;
  font-size: 0.93rem;
  text-align: right;
  margin-left: -30px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .withdrawal-id {
    flex: 0 0 80px;
    font-size: 0.9rem;
    text-align: left;
  }
  .withdrawal-amount {
    flex: 0 0 100px;
    font-size: 0.9rem;
    text-align: right;
    margin-right: 2px;
  }
  .withdrawal-status {
    flex: 0 0 70px;
    text-align: center;
    margin-right: -20px;
  }
  .withdrawal-date {
    flex: 0 0 90px;
    font-size: 0.85rem;
    text-align: right;
    margin-left: 0px;
  }
  .withdrawal-row {
    padding: 6px 0 5px 0;
    font-size: 0.93rem;
  }
}

@media (max-width: 900px) {
  .main-table-row { flex-direction: column; gap: 24px; }
  .notice-box, .withdrawal-box { min-width: 0; padding: 0px 8px 10px 8px; }
  .notice-box .box-title, .withdrawal-box .box-title { font-size: 1.08rem; }
  .notice-row, .withdrawal-row { font-size: 0.93rem; }
}

/* 매우 작은 모바일 화면 */
@media (max-width: 480px) {
  .withdrawal-id {
    flex: 0 0 70px;
    font-size: 0.85rem;
  }
  .withdrawal-amount {
    flex: 0 0 70px;
    font-size: 0.85rem;
  }
  .withdrawal-status {
    flex: 0 0 60px;
  }
  .withdrawal-date {
    flex: 0 0 80px;
    font-size: 0.8rem;
  }
  .withdrawal-row {
    padding: 5px 0 4px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .notice-box, .withdrawal-box {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 8px 6px 8px 6px !important;
    margin: 0 0 8px 0 !important;
    min-height: 200px !important;
    box-sizing: border-box;
  }
  .notice-list, .withdrawal-list {
    padding: 0 !important;
    margin: 0 !important;
  }
}