/**
 * Main Styles - Integrated CSS
 * 통합된 프론트엔드 CSS 파일
 * 
 * 이 파일은 다음 8개 파일을 통합한 것입니다:
 * - modern-style.css
 * - nav-style.css
 * - hero-contents-style.css
 * - sub-visual-style.css
 * - register-style.css
 * - footer-style.css
 * - summary-style.css
 * - site-config.css
 * 
 * 작성일: 2025년
 */

/* =====================================================
   1. 공통 모던 스타일 (modern-style.css)
   ===================================================== */

:root {
	--primary-color: #0088CC;
	--secondary-color: #e36159;
	--accent-color: #0088CC;
	--background-color: #ffffff;
	--content-bg-color: #f9fafc;
	--text-color: #333;
	--text-light: #6c757d;
	--border-radius: 10px;
	--transition: all 0.3s ease;
	--border-color: #dee2e6;
}

body, button, a {
	font-family: 'Pretendard', sans-serif;
	line-height: 1.6;
}

html .bg-color-primary, html .bg-primary {
    background-color: var(--primary-color) !important;
}
html .blockquote-primary {
    border-color: var(--primary-color) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.text-blue {
	color: var(--accent-color) !important;
}

@media (min-width: 992px) {
    #header .header-nav.header-nav-links nav > ul:not(:hover) > li > a.active {
        color: var(--accent-color);
    }
}

/* 그라데이션 텍스트 */
.text-color-gradient {
    background: -webkit-linear-gradient(left, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 모던 카드 스타일 */
.modern-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    border: 1px solid #e9ecef;
    margin: 0;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 2;
}

/* 모던 버튼 스타일 */
.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-text {
    margin-right: 8px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-modern.btn-lg {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* 비밀번호 찾기 버튼 (보조 기능) 스타일 */
.btn-modern.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #5a6268);
    border-color: #6c757d;
}

.btn-modern.btn-secondary:hover {
    background: linear-gradient(45deg, #5a6268, #495057);
    border-color: #5a6268;
    transform: translateY(-3px);
    color: #fff;
}

/* 동의 박스 스타일 */
.agree-box {
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* 동의 라디오 폼 스타일 */
.agree-radio-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agree-radio-form .form-check-inline {
    margin-right: 1.5rem;
}

/* 커스텀 체크박스 및 라디오 버튼 스타일 */
.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    margin-right: 0.5rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #ddd;
    transition: all 0.2s ease;
    position: relative;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="checkbox"] {
    border-radius: 4px;
}

.form-check-input[type="radio"]:checked,
.form-check-input[type="checkbox"]:checked {
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.form-check-input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.form-check-input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
    line-height: 1;
}

.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(63, 164, 96, 0.25);
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.form-check-input:checked + .form-check-label {
    color: #007bff !important;
    font-weight: 600;
}

/* 전체동의 체크박스 특별 스타일 */
#all_agree {
    width: 20px;
    height: 20px;
}

#all_agree + .form-check-label {
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

#all_agree:checked + .form-check-label {
    color: #007bff !important;
}

/* 전체동의 래퍼 스타일 */
.all-agree-wrapper {
    background-color: rgba(var(--primary-color), 0.05) !important;
    transition: all 0.3s ease;
}

.all-agree-wrapper:hover {
    background-color: rgba(var(--primary-color), 0.1) !important;
}

/* 마우스 오버 효과 */
.form-check:hover .form-check-input {
    border-color: #007bff !important;
}

.form-check:hover .form-check-label {
    color: #007bff !important;
}

/* 리스트 스타일 개선 */
.list-icons-style-3 li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.list-icons-style-3 li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.85rem;
}

/* 두번째 박스 아이콘 수정 */
.list-primary.list-icons-style-3 li i {
    font-size: 0.8rem;
    top: 5px;
}

/* 성공 아이콘 스타일 */
.list-success.list-icons-style-3 li i {
    font-size: 0.8rem;
    top: 5px;
    color: var(--primary-color);
}

/* 아이콘 배경 스타일 */
.list-icons-style-3.list-success li i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(63, 164, 96, 0.1);
}

/* 최강력 아이콘 크기 축소 규칙 - !important 사용 */
.agree-box .list-icons li i.fa-check,
.list-success li i.fa-check,
.list-icons-style-3 li i.fa-check {
    font-size: 0.65rem !important;
    width: 14px !important;
    height: 14px !important;
    line-height: 14px !important;
    text-align: center !important;
    background-color: rgba(63, 164, 96, 0.1) !important;
    border-radius: 50% !important;
    top: 7px !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 재사용 가능한 아이콘 클래스 */
.icon-small-check {
    font-size: 0.7rem !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    background-color: rgba(63, 164, 96, 0.1) !important;
    border-radius: 50% !important;
    top: 7px !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 경고 아이콘 클래스 */
.icon-small-warning {
    font-size: 0.7rem !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    background-color: rgba(220, 53, 69, 0.1) !important;
    border-radius: 50% !important;
    top: 4px !important;
    color: var(--secondary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.agree-box .list-icons li,
.list-success li,
.list-icons-style-3 li {
    padding-left: 24px !important;
    line-height: 1.4 !important;
}

/* 모던 폼 스타일 */
.form-control-modern {
    height: 3rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-color: #0088CC;
    background-color: #fff;
}

select.form-control-modern {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 8px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.col-form-label {
    display: flex;
    align-items: center;
}

/* 테이블 스타일 */
.table-result {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.table-result thead th {
    background: linear-gradient(45deg, rgba(0,136,204,0.05), rgba(0,183,255,0.05));
    border: none;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    text-align: center;
}

.table-result tbody td {
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: none;
    padding: 1rem 1.25rem;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #666;
    background-color: #fff;
}

.table-result tbody tr:last-child td {
    border-bottom: none;
}

.btn-view, .btn-edit {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
}

.btn-view {
    background-color: rgba(0,136,204,0.1);
    color: #0088CC;
}

.btn-edit {
    background-color: rgba(255,193,7,0.1);
    color: #FFC107;
}

.btn-view:hover {
    background-color: #0088CC;
    color: #fff;
}

.btn-edit:hover {
    background-color: #FFC107;
    color: #fff;
}

.no-results {
    padding: 2rem !important;
}

/* 정보 박스 */
.bg-light-5 {
    background-color: rgba(2, 184, 240, 0.05);
}

.info-box {
    border-left: 4px solid #3FA460;
}

.info-box ul li {
    color: #777;
}

/* 반응형 조정 */
@media (max-width: 767px) {
    .card-content {
        padding: 1rem !important;
    }
    
    .form-control-modern {
        height: 2.5rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-modern {
        padding: 0.6rem 1.5rem;
    }
    
    .text-6 {
        font-size: 1.5rem !important;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .table-result {
        min-width: 600px;
    }
}

/* 애니메이션 최적화 */
@media (prefers-reduced-motion: reduce) {
    .animated {
        transition-property: none !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Register 페이지 스타일 */
/* 접수 페이지 그룹 스타일링 */
#cate1_ui .mr-4 {
    margin-right: 40px !important;
}

/* 동의 섹션 디자인 개선 */
.agree-item {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.agree-item:hover { 
    border-color: var(--primary-color); 
    box-shadow: 0 0 10px rgba(63,164,96,0.1); 
}

.agree-item .form-check-inline { 
    margin-right: 20px; 
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#all_agree_container {
    background-color: #e9f7ef;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: 10px;
}

#agree02_text {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

#agree02_text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#agree02_text h4:first-of-type { 
    margin-top: 0; 
}

#agree02_text p { 
    margin-bottom: 0.75rem; 
}

#agree02_text .indent10 { 
    padding-left: 10px; 
}

#agree02_text::-webkit-scrollbar { 
    width: 8px; 
}

#agree02_text::-webkit-scrollbar-track { 
    background: #f1f1f1; 
    border-radius: 10px; 
}

#agree02_text::-webkit-scrollbar-thumb { 
    background: #ccc; 
    border-radius: 10px; 
}

#agree02_text::-webkit-scrollbar-thumb:hover { 
    background: #aaa; 
}

/* 테이블 스타일 추가 */
.table-responsive table tr td { 
    font-size: 0.75rem; 
    text-align: center; 
    border: 1px solid #4e4e4e; 
}

/* 들여쓰기 스타일 */
.indent-20 {
    padding-left: 20px;
}

/* 워드 래핑 처리 */
.word-keep {
    word-break: keep-all;
    word-wrap: break-word;
}

/* 라디오 버튼 레이블 정렬 수정 */
.form-check {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    margin-right: 0;
}

.form-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px 15px;
    padding-top: 3px;
    width: 100%;
}

.form-check-input[type="radio"] {
    position: relative;
    top: 3px;
    margin-top: 0;
    margin-right: 6px;
}

.form-check-input[type="checkbox"] {
    position: relative;
    top: 3px;
    margin-top: -5px;
    margin-right: 6px;
}

.form-check-label {
    position: relative;
    line-height: 1.2;
    margin-bottom: 0;
    white-space: nowrap;
}

/* 반응형 조정 */
@media (max-width: 767px) {
    .form-radio-group {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* 커스텀 알림 모달 디자인 */
#alertModal .modal-content,
#confirmModal .modal-content {
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 60, 180, 0.18), 0 1.5px 6px 0 rgba(0,0,0,0.08);
  border: none;
  background: linear-gradient(135deg, #fafdff 0%, #e8f0ff 100%);
  padding: 0.5rem 0.5rem 0 0.5rem;
}
#alertModal .modal-body,
#confirmModal .modal-body {
  color: #222;
  font-size: 1.02rem;
  padding: 2.2rem 2rem 1.2rem 2rem;
  text-align: center;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}
#alertModal .modal-footer,
#confirmModal .modal-footer {
  justify-content: center;
  background: none;
  border: none;
  padding-bottom: 2rem;
}
#alertModal .btn-primary,
#confirmModal .btn-primary {
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.6rem 2.5rem;
  box-shadow: 0 2px 8px 0 rgba(59,130,246,0.10);
  transition: all 0.18s;
}
#alertModal .btn-primary:hover, #alertModal .btn-primary:focus,
#confirmModal .btn-primary:hover, #confirmModal .btn-primary:focus {
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(37,99,235,0.13);
}
#alertModal .btn-secondary,
#confirmModal .btn-secondary {
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.6rem 2.5rem;
  background: #e5e7eb;
  color: #222;
  border: none;
  margin-left: 0.5rem;
  transition: all 0.18s;
}
#alertModal .btn-secondary:hover, #alertModal .btn-secondary:focus,
#confirmModal .btn-secondary:hover, #confirmModal .btn-secondary:focus {
  background: #d1d5db;
  color: #111;
  transform: translateY(-2px) scale(1.04);
}
#alertModal .modal-dialog,
#confirmModal .modal-dialog {
  max-width: 370px;
}

/* =====================================================
   2. 네비게이션 스타일 (nav-style.css)
   ===================================================== */

#header .header-logo { margin: 1rem 1rem 0rem 0; }
#header .header-nav-main nav > ul > li > a.active,
#header .header-nav-main nav > ul > li > a.active:focus,
#header .header-nav-main nav > ul > li > a.active:hover { color: var(--accent-color) !important; }
#header .header-btn-collapse-nav {
	background: var(--primary-color) !important;
}
#header .header-nav.header-nav-links nav > ul li:hover > a {
	color: var(--primary-color) !important;
}
@media (max-width: 991px) {
	#header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a {
		color: var(--primary-color) !important;
	}
	#header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active {
		background: var(--primary-color) !important;
	}
}
@media (max-width: 575px){
	#header .header-logo img {
		width: 80% !important;
		height: auto !important;
	}
}

/* =====================================================
   3. 히어로 콘텐츠 스타일 (hero-contents-style.css)
   ===================================================== */

.bg {
	height: 500px;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
}

#main_bg_item_1 {
	margin-top: 0rem;
	margin-left: 0rem;
	transition: var(--transition);
}

#main_bg_item_1:hover {
	transform: translateY(-5px);
}

#main_bg_item_2 {
	margin-top: 1rem;
	margin-left: 5px;
	transition: var(--transition);
}

#main_video {
	margin-top: 5rem;
	border: 5px solid #fff;
	border-radius: 10px;
}

.sns-wrap {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.sns-icon {
	display: inline-block;
	width: 4.5em;
	padding: 0 10px;
	transition: var(--transition);
}

.sns-icon img {
	transition: var(--transition);
}

.sns-icon:hover img {
	transform: scale(1.1);
}

.main-item-2 {
	text-align: center;
	align-self: flex-start;
}

.main-menu-cards {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.main-menu-card {
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid var(--border-color);
	height: 100%;
	background-color: #ffffff;
}

.main-menu-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	background-color: #fdfdff;
}

.main-menu-card .card-body {
	padding: 2rem 1.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.main-menu-card .icon-wrapper {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: rgba(63, 127, 164, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	transition: var(--transition);
}

.main-menu-card:hover .icon-wrapper {
	background: linear-gradient(135deg, rgba(63, 135, 164, 0.15), rgba(44, 97, 122, 0.2));
}

.main-menu-card i {
	font-size: 2.5rem;
	color: var(--primary-color);
	transition: var(--transition);
	margin-bottom: 0;
}

.main-menu-card:hover i {
	transform: scale(1.1);
	color: var(--accent-color);
}

.main-menu-card .card-title {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-color);
	transition: var(--transition);
}

.main-menu-card:hover .card-title {
	color: var(--accent-color);
}

.notice-card {
	border-radius: var(--border-radius);
	overflow: hidden;
	border: 1px solid var(--border-color);
	height: 100%;
	background-color: #ffffff;
}

.notice-card .card-body {
	padding: 1.8rem;
}

.notice-card .card-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom: 1.2rem;
	border-bottom: 1px solid var(--border-color);
}

.notice-card .card-title span {
	font-size: 1.2rem;
	font-weight: 700;
}

.notice-text:before {
	content: "\2022";
	font-size: 1em;
	font-weight: bold;
	margin-right: 8px;
	line-height: 1;
	color: var(--primary-color);
	vertical-align: middle;
}
.notice-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 1em;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}
.notice-text a {
	font-size: 0.95em;
	transition: var(--transition);
	color: var(--text-color);
	text-decoration: none;
}

.notice-text a:hover {
	color: var(--primary-color);
}

@media (max-width: 575px) {
	.main-menu-card .card-body {
		padding: 1rem 1rem !important;
	}
	.notice-card {
		margin-top: 2em;;
	}
	.notice-text  {
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.notice-text a {
		font-size: 0.8em;
	}
	.notice-date {
		font-size: 0.8em;
	}
}

/* =====================================================
   4. 서브 비주얼 스타일 (sub-visual-style.css)
   ===================================================== */

.page-header1 {
    height: 300px;
    background-image: url(/assets/img/sub_bg_2025_1.jpg); 
    background-repeat: no-repeat;
    background-position: center; 
    background-color: #A5DEFA;
}

@media (max-width: 768px) {
    .page-header1 {
        height: 370px;
        background-image: url(/assets/img/bg--m_2025.png); 
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (max-width: 414px) {
    .page-header1 {
        height: 340px;
    }
}
@media (max-width: 390px) {
    .page-header1 {
        height: 307px;
    }
}
@media (max-width: 375px) {
    .page-header1 {
        height: 307px;
    }
}

/* =====================================================
   5. 등록 페이지 스타일 (register-style.css)
   ===================================================== */

#pwdstatus {
	margin: 0 !important;
}

.info-section {
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem 3rem;
}

.info-list { padding: 0 0.5rem; }

.info-item {
    display: flex;
    align-items: center;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 1.1rem;
    padding: 0.5rem 1.5rem;
	border: 0.5px solid #8fcff0;
}

.info-label {
    min-width: 180px;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.info-value {
    font-size: 1.08rem;
    padding: 0.4rem 0rem;
    margin-left: 0.7rem;
    font-weight: 500;
    color: #222;
    flex: 1 1 0%;
    width: 100%;
    min-width: 0;
}

.input-group {
    flex-wrap: nowrap !important;
}

.input-group > .form-control,
.input-group > .btn {
    width: auto !important;
    min-width: 0;
    flex: none;
    display: inline-block;
    vertical-align: middle;
}

.team_info_box {
	padding: 3rem 3rem;
    border: 0.5px solid #8fcff0 !important;
}

.email-icon {
	padding-top: 0.5rem;
}

input[type="file"] {
    padding: 0.5rem 0.5rem;
}

/* 이메일 입력 스타일 보완 */
.email-input-group {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.email-input-group .email-id {
    flex: 2;
    min-width: 0;
}

.email-input-group .email-domain {
    flex: 2;
    min-width: 0;
}

.email-input-group .email-domain:focus {
	border: 0.5px solid #0088CC;
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    padding: 0.375rem 0.75rem;
}

.input-group .domain-select {
    flex: 2;
    min-width: 220px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* readonly 입력 필드 스타일 */
input[readonly] {
    background-color: #f8f9fa !important;
    cursor: default;
}

input[readonly]:focus {
    background-color: #f8f9fa !important;
    box-shadow: none !important;
}

/* 기존 이메일 스타일 유지 */
.email-input-group {
    width: 100%;
    display: flex;
}

.email-input-group .email-id {
    flex: 3;
    min-width: 0;
}

.email-input-group .email-domain {
    flex: 2;
    min-width: 0;
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.input-group .domain-select {
    flex: 2;
    min-width: 120px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* 팀 정보 스타일 */
.team-member-info {
    border: 0.5px solid #e0e6ed;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}
.team-member-info:last-child {
    margin-bottom: 0;
}
.team-member-label {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 100px;
    color: var(--primary-color);
    font-weight: 600;
}
.team-member-label i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}
.team-member-text {
    flex: 1;
    color: #212529;
}

@media (max-width: 767px) {
    .info-section {
        padding: 1.2rem 0.7rem !important;
    }
    .info-item { 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 1rem 0.7rem; 
    }
    .info-label { 
        min-width: 0; 
        margin-bottom: 0.3rem;
		font-size: 0.9rem;
    }
    .info-value { 
        margin-left: 0;
		padding: 0.4rem 0rem;
    }	
	input[type="file"] {
		padding: 0.2rem 0.2rem;
	}
	.team_info_box {
		padding: 2rem 2rem;
	}
	
	.email-icon {
		padding-top: 0;
	}

	.email-input-group {
        flex-wrap: wrap !important;
    }
    
    /* 모바일에서 첫 줄: 이메일 ID 전체 차지 */
    .email-input-group > .email-id {
        flex: 1 0 100%;
        margin-bottom: 0.5rem;
        border-radius: 0.25rem;
    }
    
    /* 모바일에서 두번째 줄: @ + 도메인 입력란 */
    .email-input-group > .input-group-prepend {
        flex: 0 0 auto;
        margin-bottom: 0.5rem;
    }
    
    .email-input-group > .input-group-prepend .input-group-text {
        border-radius: 0.25rem 0 0 0.25rem;
    }
    
    .email-input-group > .email-domain {
        flex: 1;
        margin-bottom: 0.5rem;
        border-radius: 0 0.25rem 0.25rem 0;
    }
    
    /* 모바일에서 세번째 줄: 도메인 선택 드롭다운 */
    .email-input-group > .input-group-append {
        flex: 1 0 100%;
        margin-bottom: 0;
    }
    
    .email-input-group > .input-group-append > .domain-select {
        width: 100%;
        border-radius: 0.25rem;
    }

	.team_mobile_row {
		margin-left: -5px;
		margin-right: -5px;
	}

	.small, small {
		font-size: 0.8rem !important;
		font-weight: 400 !important;
		word-wrap: break-word;
	}
}

/* 주소 관련 스타일 추가 */
.address-input-group {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
}

.zip-input {
    flex: 1;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.zip-button {
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* 모바일 대응 */
@media (max-width: 767px) {
    .address-input-group {
        flex-wrap: nowrap;
    }
    
    .zip-input {
        width: 60% !important;
    }
    
    .zip-button {
        width: 40% !important;
        font-size: 12px;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .zip-button i {
        margin-left: 5px !important;
    }
    
    .info-value .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    .info-value .col-12 {
        padding-right: 0;
        padding-left: 0;
    }
}

.form-check-input:disabled ~ .form-check-label,
.form-check-label.disabled {
  color: #bbb !important;
  opacity: 0.5 !important;
  pointer-events: none !important;
  transition: none !important;
}
.form-check-input:disabled ~ .form-check-label:hover {
  color: #bbb !important;
  border-color: #ddd !important;
  background: none !important;
  cursor: not-allowed !important;
}

/* =====================================================
   6. 푸터 스타일 (footer-style.css)
   ===================================================== */

#footer .logo {
    text-align: right;
}
.bg-grey, .bg-color-grey {
    background-color: #f4f4f4 !important;
}

/* 연락처 영역 높이 조정 */
#footer .contact-info {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
#footer .contact-info .d-flex {
    height: 30px;
    line-height: 1.2;
}
#footer .contact-item {
    padding: 0;
}

#footer .contact-item i {
    color: #3FA45F;
}

#footer .btn-privacy {
    color: #3FA45F;
    border-color: #3FA45F;
}

#footer .btn-privacy:hover {
    background-color: #3FA45F;
    color: #fff;
}
.img-fluid {
	height: 50px;
}
.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.partner-logo-container {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0;
}

.partner-logo img {
  width: 100%;
  height: 50px;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-top .row > div:last-child .partner-logo-container .partner-logo img {
  max-width: 200px !important;
}

@media (min-width: 992px) {
	.pl-lg-3, .px-lg-3 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}
@media(max-width: 768px) {
    #footer .logo {
        text-align: center;
    }
	#footer img {
		width: 70% !important;
	}
}

/* =====================================================
   7. 요약 페이지 스타일 (summary-style.css)
   ===================================================== */

/* 섹션 디자인 */
.summary-section {
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
}

.section-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    color: var(--primary-color) !important;
}

.section-body {
    padding: 20px;
    background: #fff;
}

/* 테이블 스타일 */
.table-simple {
    width: 100%;
    border-collapse: collapse;
}

.table-simple ul {
	margin-bottom: 0px !important;
}

.table-simple th {
    background-color: var(--primary-color) !important;
    padding: 12px;
    border: 1px solid #eaeaea;
    color: #ffffff;
}
.underline {
	text-decoration: underline;
}

.table-simple td {
    padding: 12px;
    border: 1px solid #eaeaea;
}

/* 리스트 스타일 */
ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 8px;
    line-height: 1.5;
	word-break: keep-all;
}

/* 알림 텍스트 */
.txt-notice {
    color: #666;
    font-size: 14px;
}

.txt-orange {
    color:rgb(231, 114, 60);
}

/* 인덴트 및 여백 */
.indent15 {
    padding-left: 15px;
}

.indent20 {
    padding-left: 20px;
}

/* 버튼 스타일 */
.nav-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    color: #333;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.btn-navigation {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 16px;
    }
    
    .section-body {
        padding: 15px;
    }
}

/* 모바일 환경에서 텍스트 크기 통일 */
@media (max-width: 768px) {
    .summary-container {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .summary-container p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .summary-container li {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .summary-container .table-simple {
        font-size: 14px !important;
    }
    
    .summary-container .table-simple th {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 10px 8px !important;
    }
    
    .summary-container .table-simple td {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 10px 8px !important;
    }
    
    .summary-container .section-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container .txt-notice {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container .blockquote-primary b {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .summary-container {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container li {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container .table-simple {
        font-size: 13px !important;
    }
    
    .summary-container .table-simple th {
        font-size: 13px !important;
        line-height: 1.3 !important;
        padding: 8px 6px !important;
    }
    
    .summary-container .table-simple td {
        font-size: 13px !important;
        line-height: 1.3 !important;
        padding: 8px 6px !important;
    }
    
    .summary-container .section-title {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
    
    .summary-container .txt-notice {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }
    
    .summary-container .blockquote-primary b {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .summary-container .btn {
        font-size: 13px !important;
    }
    
    .summary-container .btn-sm {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}

/* 표 안의 이미지 크기 - 원본 비율 유지하면서 가로 넓게 */
.table-simple img {
    max-width: 250px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block;
    margin: 0 auto 10px auto;
}

/* 표 안의 텍스트 줄바꿈 처리 */
.table-simple td,
.table-simple th {
    word-break: keep-all;
    word-wrap: break-word;
    hyphens: auto;
}

/* 웹툰 이미지는 가로로 넓게 */
.table-simple img[src*="webtoon"] {
    max-width: 400px;
    height: auto;
}

/* 모바일에서 이미지 크기 조정 */
@media (max-width: 768px) {
    .table-simple img {
        max-width: 150px;
        height: auto;
    }
    
    .table-simple img[src*="webtoon"] {
        max-width: 280px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .table-simple img {
        max-width: 120px;
        height: auto;
    }
    
    .table-simple img[src*="webtoon"] {
        max-width: 240px;
        height: auto;
    }
}

/* 일반 스타일 - summary-list 클래스 */
.summary-list {
    margin-bottom: 0px;
}

.summary-list li {
    margin-bottom: 8px;
}

/* 모바일 환경에서 summary-list 추가 스타일링 */
@media (max-width: 768px) {
    .summary-list {
        margin-bottom: 0px !important;
        padding-left: 20px !important;
    }
    
    .summary-list li {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 480px) {
    .summary-list {
        margin-bottom: 0px !important;
        padding-left: 18px !important;
    }
    
    .summary-list li {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    /* 작은 화면에서 표 스크롤 가능하게 */
    .table-simple {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        width: 100% !important;
    }
    
    .table-simple th,
    .table-simple td {
        white-space: normal !important;
        word-break: keep-all !important;
        min-width: 80px !important;
    }
}

/* =====================================================
   8. 사이트 설정 - 관리자 알림 (site-config.css)
   ===================================================== */

.admin-notification-bar {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    text-align: center; 
    padding: 12px 20px; 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    z-index: 9999; 
    font-weight: 500; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.admin-notification-btn {
    color: #fff; 
    text-decoration: none; 
    background: rgba(255,255,255,0.2); 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.admin-notification-close-btn {
    background: none; 
    border: none; 
    color: white; 
    font-size: 16px; 
    cursor: pointer; 
    padding: 0; 
    margin-left: 10px;
    opacity: 0.7;
}

.admin-notification-toast {
    position: fixed; 
    top: 20px; 
    right: 20px; 
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    padding: 15px 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 350px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

