* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* 헤더 스타일 */
.header {
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  text-align: center;
  padding: 15px 0;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header .subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
  font-weight: 500;
}

.back-button {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 컨텐츠 영역 스타일 */
.container {
  padding: 15px 15px;
  max-width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 140px); /* 헤더와 푸터 높이를 뺀 최소 높이 */
}

.section {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d7dd2;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 8px;
}

.notice {
  background-color: #f0f7ff;
  border-left: 4px solid #2d7dd2;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  border-radius: 4px;
  text-align: justify;
}

ul.point-list {
  list-style: none;
  margin-left: 5px;
}

ul.point-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

ul.point-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2d7dd2;
}

/* 버튼 스타일 */
.btn-next {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  border: none;
  padding: 14px 0;
  margin-top: 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(45, 125, 210, 0.2);
}

.btn-next:hover {
  background: linear-gradient(135deg, #3183d0 0%, #246bb8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 125, 210, 0.3);
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin: 10px 0 25px 0;
}

.step {
  width: 18%;
  height: 4px;
  background-color: #e0e0e0;
  margin: 0 3px;
  border-radius: 2px;
}

.step.active {
  background-color: #2d7dd2;
}

/* 푸터 스타일 */
.footer {
  background-color: #f2f2f2;
  color: #777;
  text-align: center;
  padding: 15px;
  font-size: 0.8rem;
  border-top: 1px solid #eaeaea;
}

.footer p {
  margin: 0;
}

.footer .school-info {
  margin-top: 5px;
  font-size: 0.75rem;
  color: #999;
}

/* 반응형 조정 */
@media (min-width: 768px) {
  .container {
    max-width: 600px;
    padding: 30px;
  }
  
  .header h1 {
    font-size: 1.7rem;
  }
  
  .header .subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 20px;
  }
}
    
    
/* 개인정보 동의 페이지 스타일 */
.privacy-content {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  height: 250px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.privacy-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.privacy-subtitle {
  font-size: 0.95rem;
  margin: 15px 0 5px 0;
}

.privacy-list {
  padding-left: 20px;
  margin-bottom: 10px;
}

.agree-checkbox {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.agree-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.agree-checkbox label {
  font-weight: 500;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: none;
}

/* 공통 버튼 스타일 (다른 페이지에서도 사용될 수 있음) */
.btn-next {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  border: none;
  padding: 14px 0;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(45, 125, 210, 0.2);
}

.btn-next:hover {
  background: linear-gradient(135deg, #3183d0 0%, #246bb8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 125, 210, 0.3);
}

.txt-red {
	color: #ff0000;
}

/* 개인정보 동의 페이지 스타일 */
.privacy-content {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  height: 250px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.privacy-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.privacy-subtitle {
  font-size: 0.95rem;
  margin: 15px 0 5px 0;
}

.privacy-list {
  padding-left: 20px;
  margin-bottom: 10px;
}

/* 허가조건 확인 페이지 스타일 */
.terms-content {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  height: 250px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.terms-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.terms-list {
  padding-left: 20px;
  margin-bottom: 10px;
}

.terms-list li {
  margin-bottom: 8px;
}

.terms-sublist {
  padding-left: 20px;
  margin: 5px 0;
}

/* 공통 스타일 */
.agree-checkbox {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.agree-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.agree-checkbox label {
  font-weight: 500;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: none;
}

/* 사용신청 정보 입력 페이지 스타일 */
.form-group {
  margin-bottom: 15px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 15px;
  background-color: #fcfcfc;
}

.form-section-title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #2d7dd2;
  font-weight: 600;
}

.input-wrapper {
  margin-bottom: 10px;
}

.input-wrapper label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}

.input-wrapper input, 
.input-wrapper select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.input-wrapper input:focus, 
.input-wrapper select:focus {
  border-color: #2d7dd2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(45, 125, 210, 0.2);
}

.input-guide {
  font-size: 0.8rem;
  color: #777;
  margin-top: 4px;
}

.required {
  color: #e74c3c;
  margin-left: 2px;
}

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

.time-wrapper select {
  flex: 1;
  min-width: 120px;
}

.time-separator {
  margin: 0 10px;
  font-weight: 500;
  padding: 10px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 사용목적 선택 스타일 */
.purpose-slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.purpose-slot-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 0 0 calc(50% - 5px);
  text-align: center;
  position: relative;
}

.purpose-slot-item:hover {
  background-color: #f0f0f0;
  border-color: #bbb;
}

.purpose-slot-item.selected {
  background-color: #e3f2fd;
  border-color: #2d7dd2;
  color: #2d7dd2;
  font-weight: 500;
}

@media screen and (max-width: 375px) {
  .purpose-slot-item {
    flex: 0 0 100%;
  }
}


/* 시간 슬롯 스타일 - 최적화 버전 */
.time-slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.time-slot-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 0 0 calc(50% - 5px);
  text-align: center;
  position: relative;
}

.time-slot-item:hover {
  background-color: #f0f0f0;
  border-color: #bbb;
}

.time-slot-item.selected {
  background-color: #e3f2fd;
  border-color: #2d7dd2;
  color: #2d7dd2;
  font-weight: 500;
}

.time-slot-item.selected .time-slot-text {
  font-weight: bold;
  color: #2d7dd2;
}

/* disabled 시간대 스타일 수정 */
.time-slot-item.disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  position: relative;
  opacity: 0.7;
}

/* 날짜 선택 전 시간대 전체 비활성화 스타일 */
.time-slot-item.init-disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  position: relative;
  opacity: 0.7;
}

.slot-unavailable-msg {
  position: absolute;
  right: 7px;
  bottom: 1px;
  font-size: 0.75rem;
  color: #e74c3c;
  font-weight: 500;
}

/* 반응형 디자인 */
@media screen and (max-width: 375px) {
  .time-slot-item {
    flex: 0 0 100%;
  }
}

/* 입력 안내 스타일 */
.input-guide {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  line-height: 1.4;
}

/* 오류 메시지 스타일 */
.error-message {
  color: #dc3545;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  display: none;
}

.error-message i {
  margin-right: 6px;
}

/* 필수 입력 표시 스타일 */
.required {
  color: #dc3545;
  margin-left: 3px;
}

/* 반응형 조정 */
@media (max-width: 375px) {
  .time-wrapper select {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  
  .time-separator {
    flex: 0 0 100%;
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;
  }
}

/* 현대적 라운드 디자인 - 부드러운 모서리와 그림자 (수정된 버전) */
.ui-datepicker {
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  font-family: 'Noto Sans KR', sans-serif;
  border: none;
  background: #fff;
  width: 300px;
}

.ui-datepicker .ui-datepicker-header {
  background: #fff;
  border: none;
  padding: 8px 0 15px 0;
  border-radius: 12px;
}

.ui-datepicker .ui-datepicker-title {
  color: #222;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}

/* 화살표 위치와 스타일 강제 적용 */
.ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
  position: absolute !important;
  top: 15px !important;
  width: 20px !important;
  height: 30px !important;
  cursor: pointer !important;
  border: none !important;
  background: transparent !important;
  z-index: 10 !important; /* 화살표 위치 보장 */
}

.ui-datepicker .ui-datepicker-prev {
  left: 10px !important;
}

.ui-datepicker .ui-datepicker-next {
  right: 10px !important;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  background: transparent !important;
  border: none !important;
  top: 15px !important;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 10px !important;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 10px !important;
}

/* 화살표 아이콘 강제 적용 */
.ui-datepicker .ui-datepicker-prev span, 
.ui-datepicker .ui-datepicker-next span {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 30% !important;
  margin-left: -8px !important;
  margin-top: -8px !important;
  width: 16px !important;
  height: 16px !important;
}

.ui-datepicker .ui-datepicker-prev span:before, 
.ui-datepicker .ui-datepicker-next span:before {
  content: '' !important;
  position: absolute !important;
  width: 10px !important;
  height: 10px !important;
  border-top: 2px solid #3a8dde !important;
  border-right: 2px solid #3a8dde !important;
}

.ui-datepicker .ui-datepicker-prev span:before {
  transform: rotate(-135deg) !important;
  left: 5px !important;
  top: 3px !important;
}

.ui-datepicker .ui-datepicker-next span:before {
  transform: rotate(45deg) !important;
  left: -1px !important;
  top: 3px !important;
}

.ui-widget-header .ui-icon {
	background-image: none !important;
}

.ui-datepicker .ui-datepicker-calendar th {
  font-weight: 500;
  color: #666;
  font-size: 13px;
  padding: 10px 0;
}

.ui-datepicker .ui-datepicker-calendar th:first-child {
  color: #ff5757;
}

.ui-datepicker .ui-datepicker-calendar th:last-child {
  color: #3a8dde;
}

.ui-datepicker .ui-datepicker-calendar td {
  padding: 3px;
}

.ui-datepicker .ui-datepicker-calendar td a {
  text-align: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: #333;
  font-size: 14px;
}

.ui-datepicker .ui-datepicker-calendar td a.ui-state-active {
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  box-shadow: 0 4px 8px rgba(45, 125, 210, 0.3);
}

.ui-datepicker .ui-datepicker-calendar td a.ui-state-highlight {
  background-color: #f0f7ff;
  color: #2d7dd2;
}

.ui-datepicker .ui-datepicker-calendar td a:hover {
  background-color: #f2f5fa;
}

/* 셀렉트 박스 간격 조정 */
.ui-datepicker select.ui-datepicker-year,
.ui-datepicker select.ui-datepicker-month {
  padding: 6px 11px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  margin: 0 5px !important;  /* 간격 증가 */
  width: 43% !important;
  font-size: 14px;
  font-weight: 500;
  background: #f9f9f9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);  
  height: 36px;
}

/* 셀렉트 박스 화살표 개선 */
.ui-datepicker select.ui-datepicker-year:focus,
.ui-datepicker select.ui-datepicker-month:focus {
  outline: none;
  border-color: #3a8dde;
  box-shadow: 0 0 0 2px rgba(58, 141, 222, 0.1);
}

/* 신청완료 페이지 스타일 */
.completion-section {
  text-align: center;
}

.completion-header {
  margin-bottom: 30px;
}

.completion-header i {
  font-size: 60px;
  color: #4caf50;
  margin-bottom: 16px;
}

.completion-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.completion-header p {
  color: #666;
  font-size: 1rem;
}

.completion-info {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.completion-info h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
  color: #2d7dd2;
}

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

.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  flex: 0 0 25%;
  font-weight: 500;
  color: #555;
}

.info-value {
  flex: 0 0 75%;
  word-break: break-all;
}

.password-box {
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 3px 12px rgba(45, 125, 210, 0.3);
}
.password-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.password-title i {
  margin-right: 6px;
}
.password-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}
.password-value {
  font-weight: 700;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.password-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  text-align: left;
}

.btn-home {
  display: inline-block;
  background: linear-gradient(135deg, #2d7dd2 0%, #1d5c9f 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(45, 125, 210, 0.3);
  margin-top: 10px;
}
.btn-home:hover {
  background: linear-gradient(135deg, #246bb8 0%, #1a5084 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(45, 125, 210, 0.4);
}
.btn-home i {
  margin-left: 8px;
}

.completion-notice {
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 4px;
  text-align: left;
}

.completion-notice h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e65100;
}

.completion-notice h4 i {
  margin-right: 6px;
}

.notice-list {
  list-style: none;
  padding-left: 6px;
}

.notice-list li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 5px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* 반응형 조정 */
@media (max-width: 375px) {
  .info-row {
    flex-direction: column;
  }

  .info-label {
    flex: 0 0 100%;
    margin-bottom: 4px;
  }

  .info-value {
    flex: 0 0 100%;
  }
  
  .password-value {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}

/* 신청내역 목록 페이지 스타일 */
.application-list {
  margin-bottom: 20px;
  margin-top: 10px;
}

.application-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.application-item:hover {
  background-color: #f9f9f9;
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.application-title {
  font-weight: 600;
  color: #2d7dd2;
  font-size: 1.05rem;
}

.application-date {
  font-size: 0.9rem;
  color: #777;
}

.application-content {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

/* 페이지네이션 스타일 */
.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 3px;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: #f0f0f0;
}

.pagination .current {
  background-color: #2d7dd2;
  color: white;
  border-color: #2d7dd2;
}

/* 로딩 표시 스타일 */
.loading {
  text-align: center;
  padding: 20px;
  display: none;
}

.loading i {
  color: #2d7dd2;
}

/* 신청내역 상세 스타일 */
.detail-section {
  margin-top: 10px;
}

.detail-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d7dd2;
  margin: 20px 0 10px 0;
}

.detail-info-container {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #eaeaea;
}

.detail-info-row {
  display: flex;
  border-bottom: 1px solid #eaeaea;
}

.detail-info-row:last-child {
  border-bottom: none;
}

.detail-info-label {
  flex: 0 0 120px;
  padding: 12px 15px;
  background-color: #f8f9fa;
  font-weight: 500;
  color: #555;
}

.detail-info-value {
  flex: 1;
  padding: 12px 15px;
  word-break: break-all;
}

.password-box {
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(45, 125, 210, 0.2);
}

.password-title {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.password-title i {
  margin-right: 8px;
}

.password-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 5px 0;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
}

.password-notice {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* 반응형 스타일 */
@media (max-width: 375px) {
  .detail-info-row {
    flex-direction: column;
  }
  
  .detail-info-label {
    flex: 0 0 100%;
    border-bottom: 1px solid #eaeaea;
  }
  
  .detail-info-row:last-child .detail-info-label {
    border-bottom: 1px solid #eaeaea;
  }
}

/* 본인인증 관련 스타일 */
.auth-button-container {
  margin: 30px 0;
  text-align: center;
}

.auth-guide {
  background-color: #f8f9fa;
  border-left: 4px solid #2d7dd2;
  padding: 15px;
  margin-top: 20px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.auth-guide p {
  margin-bottom: 8px;
}

.auth-guide p:last-child {
  margin-bottom: 0;
}

.auth-guide i {
  color: #2d7dd2;
  margin-right: 5px;
}

/* 휴대폰 본인인증 버튼 스타일 */
.btn-cert-hp {
  display: inline-block;
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(45, 125, 210, 0.2);
  text-align: center;
  text-decoration: none;
}

.btn-cert-hp:hover {
  background: linear-gradient(135deg, #3183d0 0%, #246bb8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 125, 210, 0.3);
}

/* 임시 통과 버튼 스타일 */
.btn-cert-bypass {
  display: inline-block;
  background: linear-gradient(135deg, #f5a623 0%, #e67e22 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  margin-left: 10px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
  text-align: center;
  text-decoration: none;
}

.btn-cert-bypass:hover {
  background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

/* 모바일 화면에서 버튼 스타일 조정 */
@media (max-width: 375px) {
  .btn-cert-hp, .btn-cert-bypass {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/* 보호자 정보 출력 스타일 */
.parent-info-display {
  border: 1px solid #e0e7ff;
  background-color: #f8faff;
}

.guardian-info-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.guardian-info-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.guardian-info-item:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}

.guardian-info-label {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  margin-right: 12px;
  min-width: 80px;
}

.guardian-info-value {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

/* 신청내역 목록 스타일 추가 */

/* 취소 버튼 스타일 */
.btn-cancel {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
  color: white;
  border: none;
  padding: 10px 0;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.btn-cancel:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

/* 취소된 신청 스타일 */
.application-item.canceled {
  opacity: 0.7;
  background-color: #f9f9f9;
  border-left: 3px solid #e53935;
}

/* 지난 일정 스타일 */
.application-item.past {
  opacity: 0.8;
  background-color: #f9f9f9;
  border-left: 3px solid #9e9e9e;
}

.cancel-badge {
  display: inline-block;
  background-color: #e53935;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 8px;
  vertical-align: middle;
}

.past-badge {
  display: inline-block;
  background-color: #9e9e9e;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 8px;
  vertical-align: middle;
}

/* 모달 스타일 */
.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.6);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s;
}

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

.modal-header {
  padding: 15px;
  background: linear-gradient(135deg, #3a8dde 0%, #2d7dd2 100%);
  color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.close {
  color: white;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: right;
}

.btn-modal-cancel, .btn-modal-confirm {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-cancel {
  background-color: #e9ecef;
  color: #495057;
  margin-right: 8px;
}

.btn-modal-confirm {
  background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
  color: white;
}

.btn-modal-cancel:hover {
  background-color: #dee2e6;
}

.btn-modal-confirm:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

#cancel-reason {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
}

#reason-error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #e53935;
}

/* 취소 정보 표시 */
.cancel-info {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.cancel-info h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
}

.cancel-info p {
  margin: 5px 0;
  font-size: 0.9rem;
}