@charset "UTF-8";
	
	/* ================================
	  레이아웃 뼈대
	================================ */
    .mypage-wrapper {
	    display: flex;
	    align-items: flex-start;
	}
	
	.mypage-sidebar {
	    width: 260px;
	    flex-shrink: 0;
	}
	
	.mypage-content {
		flex: 1;
	    margin-left: 30px;
	}
	
	.menu-title {
	    width: 100%;
	    padding: 15px;
	    background: #fff;
	    border: 1px solid #eee;
	    font-weight: bold;
	}
	
	.menu-title.mt-50 {
	    margin-top: 40px;
	}
	
	.sub-item {
	    display: block;
	    padding: 12px 20px;
	    color: #555;
	    text-decoration: none;
	    border-bottom: 1px solid #f0f0f0;
	}
	
	.sub-item:hover {
	    background: #e9ecef;
	    color: #198754;
	}
	
	.sub-item.active {
	    background: #e9ecef;
	    color: #198754;
	    font-weight: bold;
	    border-left: 4px solid #198754;
	}
	 
	.mypage-inner {
	    width: 70%;        /* ← 네가 원하는 70% */
	    margin: 0 auto;    /* 가운데 정렬 */
	} 
	
	/* 마이페이지 상단 배너 */
	#mypageHero {
	  position: relative;
	  overflow: hidden;
	  
	  background-image: url("/resources/images/banner.png");
	  background-size: cover;
	  background-position: right center;
	  background-repeat: no-repeat;
	
	  min-height: 80px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  
	  opacity: 1 !important;
  	  filter: none !important;
  	  
  	  cursor: pointer; /* 클릭 가능 힌트 */
  	  text-decoration: none;
      transition: filter 0.2s ease, box-shadow 0.15s ease;
	}
	
	#mypageHero:hover {
	  filter: brightness(0.96);
	  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08);
	}

	/* 오버레이 */
	#mypageHero::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  z-index: 1;
	
	  background: linear-gradient(
	    to right,
	    rgba(255,255,255,0.75) 0%,
	    rgba(255,255,255,0.45) 100%
	  );
	}
	
	#mypageHero:visited,
	#mypageHero:hover,
	#mypageHero:active {
	  color: #000 !important;
	  text-decoration: none;
	}

	#mypageHero .mypage-title-text {
	  position: relative;
	  z-index: 2;
	
	  color: #000;
	  font-size: 22px;
	  font-weight: 800;
	  letter-spacing: -0.3px;
	  text-shadow: none;
	}
	/* ================================
	   로그인 페이지 UI
	================================ */
	/* ===== 로그인 카드 ===== */
	.login-card {
	  border-radius: 12px;
	  border: 1px solid #e5e7eb;
	  box-shadow: none;           /* 그림자 제거 */
	  background: #fff;
	}
	
	/* ===== input ===== */
	.login-card .form-control {
	  height: 44px;
	  font-size: 14px;
	  border-radius: 8px;
	  border: 1px solid #d1d5db;
	}
	
	.login-card .form-control:focus {
	  border-color: #111;         /* 포커스도 검정 */
	  box-shadow: none;
	}
	
	/* ===== 로그인 버튼 ===== */
	.login-card .btn-primary {
	  height: 46px;
	  border-radius: 8px;
	  font-weight: 500;
	  background-color: #111;
	  border: 1px solid #111;
	}
	
	.login-card .btn-primary:hover {
	  background-color: #000;
	  border-color: #000;
	}
	
	/* ===== 하단 링크 ===== */
	.login-card .card-footer {
	  background: #fff;
	  border-top: 1px solid #e5e7eb;
	}
	
	.login-card .card-footer a {
	  font-size: 13px;
	  color: #555;
	  background: none;
	  border: none;
	  padding: 0;
	}
	
	.login-card .card-footer a:hover {
	  color: #000;
	  text-decoration: underline;
	}
	
	/* ===== 에러 메시지 ===== */
	.login-error {
	  display: flex;
	  align-items: center;
	  margin-top: 6px;
	  color: rgb(235, 0, 0);
	}
	
	.login-error .error-icon {
	  font-size: 12px;
	  margin-right: 4px;
	  line-height: 16px;
	}
	
	.login-error .error-text {
	  font-size: 12px;
	  line-height: 16px;
	  font-weight: 400;
	}
	
	/* ===== 로그인 헤더 ===== */
	.login-header {
	  margin-bottom: 12px;
	}
	
	.login-title {
	  font-size: 22px;
	  font-weight: 700;
	  color: #111;
	  margin-bottom: 4px;
	}
	
	.login-subtitle {
	  font-size: 13px;
	  color: #666;
	}
	
	/* ===== 하단 링크 정렬 ===== */
	.login-footer {
	  display: flex;
	  justify-content: space-between;
	  padding: 14px 16px;
	  border-top: 1px solid #e5e7eb;
	}
	
	.login-link {
	  font-size: 13px;
	  color: #555;
	  text-decoration: none;
	}
	
	.login-link.left {
	  margin-left: 4px;
	}
	
	.login-link.right {
	  margin-right: 4px;
	}
	
	.login-link:hover {
	  color: #000;
	  text-decoration: underline;
	}
	
	/* ===== 또는 구분선 ===== */
	.login-divider {
	  display: flex;
	  align-items: center;
	  margin: 16px 0;
	  font-size: 12px;
	  color: #999;
	}
	
	.login-divider::before,
	.login-divider::after {
	  content: "";
	  flex: 1;
	  height: 1px;
	  background: #e5e7eb;
	}
	
	.login-divider span {
	  margin: 0 10px;
	  white-space: nowrap;
	}
	
	/* ================================
	   소셜로그인 버튼 UI
	================================ */	
	.social-img-btn {
      width: 100%;
      min-height: 56px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  overflow: hidden;
	}
		
	.social-login {
	  display: flex;
	  flex-direction: column;
	  gap: 8px;
	  margin-bottom: 16px;
	}
	
	/* 완성형 wide 버튼 이미지 */
	.social-img-btn img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	}	
		
	.social-img-btn img:hover {
	  filter: brightness(0.97);
	}
	
	/* ================================
	   회원가입 UI 
	================================ */
	/* 기본: 안내문 보임 */
	.id-guide {
	  display: block;
	}
	
	/* 아이디 입력 + 중복확인 */
	.id-input-wrap {
	  display: flex;
	  gap: 8px;
	}
	
	.id-input-wrap .form-control {
	  flex: 1 1 auto;
	  min-width: 0;
	}
	
	.id-input-wrap .btn {
	  white-space: nowrap;
	  width: auto;
	}

	/* 해당 input이 invalid면 → 바로 아래 안내문 숨김 */
	.form-control.is-invalid + .id-guide {
	  display: none;
	}

	/* 회원가입 보정 */
	.register-card .input-group {
	  flex-wrap: nowrap;
	  width: 100%;
	}
	
	.register-card .input-group .btn {
	  white-space: nowrap;
	}
	
	.register-card .input-group .form-control {
	  flex: 1 1 auto;      /* ⭐ 항상 남은 영역 채움 */
  	  min-width: 0; 
	}
	
	/* 카드 */
	.register-card {
	  border-radius: 12px;
	  border: 1px solid #e5e7eb;
	  background: #fff;
	
	  max-width: 500px;
  	  margin: 0 auto;
	}
	
	/* 카드 헤더 */
	.register-card .card-header {
	  background: #fff;
	  border-bottom: 1px solid #e5e7eb;
	  font-size: 14px;
	  font-weight: 600;
	  padding: 10px 14px;
	}
	
	/* 카드 바디 */
	.register-card .card-body {
	  padding: 14px 14px;
	}
	
	.password-card .card-body {
	  padding: 0;
	}
	
	/* input 통일 */
	.register-card .form-control {
	  height: 36px;
	  font-size: 13px;
	  border-radius: 8px;
	  border: 1px solid #d1d5db;
	}
	
	.register-card .form-control:focus {
	  border-color: #111;
	  box-shadow: none;
	}
	
	/* input-group */
	.register-card .input-group-text {
	  font-size: 13px;
	  background: #f9fafb;
	  border: 1px solid #d1d5db;
	}
	
	/* radio */
	.register-card input[type="radio"] {
	  margin-right: 4px;
	}
	
	/* footer */
	.register-card .card-footer {
	  background: #fff;
	  border-top: 1px solid #e5e7eb;
	  padding: 10px 14px;
	}
	
	/* 버튼 */
	.register-card .btn {
	  height: 36px;
	  border-radius: 8px;
	  font-size: 13px;
	  
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	}
	
	/* 기본 버튼 (로그인 톤) */
	.register-card .btn-secondary {
	  background: #111;
	  border: 1px solid #111;
	  color: #fff;
	}
	
	.register-card .btn-secondary:hover {
	  background: #000;
	  border-color: #000;
	}
	
	/* 주소 찾기 버튼 */
	.address-group .btn {
	  height: 36px;          
	  padding: 0 8px;      
	  font-size: 13px;    
	  border-radius: 8px;  
	  white-space: nowrap; 
	}
	
	/* 에러 메시지 정렬 (기존 fieldError.jsp 영향 없음) */
	.field-error,
	.text-danger {
	  font-size: 12px;
	}
	
	/* ==============================
   		수정 불가 정보 박스
	================================ */
	.readonly-box {
	  width: 100%;
	  min-height: 44px;
	
	  padding: 10px 14px;
	  border-radius: 8px;
	
	  background-color: #f9fafb;
	  border: 1px dashed #d1d5db;
	
	  font-size: 14px;
	  color: #374151;
	  font-weight: 500;
	
	  display: flex;
	  align-items: center;
	}
	
	/* 아이콘 느낌 살짝 주고 싶을 때 */
	.readonly-box::before {
	  content: "🔒";
	  margin-right: 8px;
	  font-size: 13px;
	  opacity: 0.6;
	}
	
	/* ================================
	   생년월일 커스텀 SELECT
	================================ */
	.custom-select {
	  position: relative;
	}
	
	.birth-row {
	  flex-wrap: nowrap;
	}
	
	/* 선택 영역 */
	.custom-select .selected-value {
	  height: 36px;
	  font-size: 13px;
	  padding: 0 36px 0 12px;
	  border: 1px solid #ced4da;
	  border-radius: 8px;
	  background: #fff;
	
	  display: flex;
	  align-items: center;
	  justify-content: center;
	
	  cursor: pointer;
	  position: relative;
	}
	
	/* ▼ 화살표 */
	.custom-select .selected-value::after {
	  content: "";
	  position: absolute;
	  right: 14px;
	  top: 50%;
	  transform: translateY(-50%);
	  width: 0;
	  height: 0;
	  border-left: 5px solid transparent;
	  border-right: 5px solid transparent;
	  border-top: 6px solid #555;
	}
	
	/* 옵션 리스트 */
	.custom-select .select-options {
	  display: none;                 /* ⭐ 기본 닫힘 */
	  
	  position: absolute;            /* ⭐ 겹쳐서 뜨게 */
	  top: calc(100% + 4px);
	  left: 0;
	  width: 100%;
	
	  max-height: 200px;             /* ⭐ 5~6개 */
	  overflow-y: auto;
	
	  border: 1px solid #ced4da;
	  border-radius: 8px;
	  background: #fff;
	  z-index: 1000;
	
	  list-style: none;              /* ⭐ 점 제거 */
	  padding: 0;
	  margin: 0;
	}
	
	/* 옵션 */
	.custom-select .select-options li {
	  height: 34px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	}
	
	.custom-select .select-options li:hover {
	  background: #f1f1f1;
	}
	
	#dayGuide {
	  display: block;
	  margin-top: 4px;
	  color: red;
	  font-size: 0.7rem !important;
	}
	
	.select-options li.active {
	  outline: 2px solid currentColor;
	  outline-offset: -2px;
	}
	 
	/* 스크린리더(생년월일) */
	.visually-hidden {
	  position: absolute !important;
	  width: 1px;
	  height: 1px;
	  padding: 0;
	  margin: -1px;
	  overflow: hidden;
	  clip: rect(0, 0, 0, 0);
	  white-space: nowrap;
	  border: 0;
	}
	
	/* ================================
	   연락처 SELECT
	================================ */
	/* 연락처 공통 박스 규격 */
	.phone-box {
	  flex: 1 1 0;
	  width: auto;
 	  min-width: 0;
	  height: 36px;              
	  text-align: center;
	  padding-right: 32px; /* 화살표 공간 */
	}
	
	/* 연락처 줄 절대 안 깨지게 */
	.phone-group,
	.d-flex.align-items-center {
	  flex-wrap: nowrap;
	}

	/* select / input 높이 강제 통일 */
	.phone-box.form-select,
	.phone-box.form-control {
	  line-height: 1.5;
	}
	
	/* 하이픈 정렬 */
	.phone-dash {
	  height: 36px;
	  display: flex;
	  align-items: center;
	  font-weight: bold;
	}
	
	/* 하이픈 고정 폭 */
	.phone-dash,
	.d-flex.align-items-center > span {
	  flex: 0 0 auto;
	}
	
	.phone-select {
	  width: 136px;
	  height: 36px;  
	}
	
	.phone-group {
	  display: flex;
	  gap: 8px;
	}
	
	/* ================================
		마이페이지
	================================ */	
	/* 마이페이지 폼 가운데 정렬 + 폭 제한 */
	.profile-center {
	  width: 100%;
	  max-width: 640px;   
	  margin: 0 auto;      /* 가운데 정렬 */
	}
	
	/* 비밀번호 변경 페이지 page-head 여백 제거 */
	.password-page {
	  margin-top: 0 !important;
	  padding-top: 0 !important;
	  min-height: auto;
	  height: auto;
	}
	
	/* 정보수정 버튼 */	
	.btn-mypage-sm {
	  padding: 8px 14px;      /* ⬅ 좌우/상하 줄이기 */
	  font-size: 13px;        /* ⬅ 글자 살짝 작게 */
	  border-radius: 12px;    /* ⬅ 부드럽게 */
	  line-height: 1.3;
	  
	  box-shadow: 0 2px 6px rgba(47, 143, 91, 0.15);
	}
	
	/* =========================
	   마이페이지 - 최근 주문 요약
	========================= */
	
	.mypage-order-summary {
	  border-top: 1px solid #eee;
	  padding-top: 24px;
	}
	
	.order-summary-box {
	  background: #f9fafb;
	  border-radius: 12px;
	  padding: 18px;
	  border: 1px solid #e5e7eb;
	}
	
	.order-summary-item {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 12px 0;
	  border-bottom: 1px solid #ececec;
	}
	
	.order-summary-item:last-child {
	  border-bottom: none;
	}
	
	.order-left {
	  font-size: 14px;
	  color: #333;
	}
	
	.order-status {
	  font-size: 13px;
	  color: #666;
	}
	
	.order-right {
	  font-weight: 600;
	  font-size: 14px;
	  color: #111;
	}
	
	.order-progress {
	  font-size: 13px;
	  color: #444;
	}
	
	.order-empty-box {
	  background: #f9fafb;
	  padding: 18px;
	  border-radius: 12px;
	  border: 1px dashed #d1d5db;
	  font-size: 14px;
	  text-align: center;
	  color: #666;
	}

	.recent-order-box {
	  background: #f9fafb;
	  border-radius: 12px;
	  padding: 16px 18px;
	}
	
	.recent-order-item {
	  padding: 10px 0;
	  border-bottom: 1px dashed #e5e7eb;
	  font-size: 14px;
	}
	
	.recent-order-item:last-child {
	  border-bottom: none;
	}
	
	.order-date {
	  font-weight: 600;
	  color: #333;
	}
	
	.order-info {
	  margin-top: 2px;
	  color: #555;
	}
	
	.recent-order-footer {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
	
	.price-text {
	    color: #212529;   /* 거의 블랙에 가까운 다크 그레이 */
	    font-weight: 700;
	}
	
	/* ================================
		비밀번호 관련 전용
	================================ */	
	
	.password-page .profile-center {
	  max-width: 100%;
	}
	
	.password-page .register-card {
	  max-width: 100%;
	}

	/* 카드 외곽선 제거 + 부드러운 느낌 */
	.password-page .register-card {
	  border: none;
	  box-shadow: none;
	  background: #fff;
	}
	
	/* body padding 줄이기 */
	.password-page .card-body {
	  padding: 0px 20px;
	}
	
	/* footer 위 선 제거 */
	.password-page .card-footer {
	  border-top: none;
	  padding: 10px 20px;
	}
	
	/* input은 깔끔하게 */
	.password-page .form-control {
	  padding: 8px 10px;     /* 기본(12~14px) → ↓ */
	  font-size: 14px;
	  height: auto;           /* 고정 height 제거 */
	}
	
	/* 버튼 */
	.password-page .btn {
	  padding: 10px 16px;      
	  font-size: 13px;       
	  border-radius: 8px;     
	}
	
	.password-page .login-header {
	  margin-bottom: 12px; /* 기존 mb-4(24px) → 절반 */
	}
	
	/* ================================
	   회원 탈퇴 페이지
	================================ */
	.withdraw-page {
	  width: 100%;
	}
	
	.withdraw-title {
	  font-size: 20px;
	  font-weight: 700;
	  margin-bottom: 12px;
	  color: #111;
	}
	
	/* 안내 문구 */
	.withdraw-notice {
	  font-size: 13px;
	  color: #666;
	  line-height: 1.6;
	  margin-bottom: 20px;
	}
	
	/* 입력창 */
	.withdraw-input {
	  height: 44px;
	  border-radius: 8px;
	  font-size: 14px;
	  margin-bottom: 10px;
	}
	
	/* 경고 리스트 */
	.withdraw-notice.warning {
	  color: #dc3545;
	  font-weight: 500;
	}
	
	.warning-list {
	  padding-left: 18px;
	  margin-bottom: 24px;
	  font-size: 13px;
	  color: #444;
	  line-height: 1.6;
	}

	.warning-list li {
	  margin-bottom: 6px;
	}
	
	/* 버튼 그룹 */
	.withdraw-btn-group {
	  display: flex;
	  gap: 8px;
	  align-items: center;
	  justify-content: space-between;
	}
	
	/* 탈퇴 버튼 (위험 강조 but 과하지 않게) */
	.withdraw-btn-group .btn {
	  height: 36px; 
	  display: inline-flex; 
	  align-items: center; /* ⭐ 수직 중앙 */ 
	  justify-content: center; 
	  line-height: normal;
	}

	.withdraw-btn-group .btn-danger {
	  background-color: #dc3545;
	  border: 1px solid #dc3545;
	}
	
	.withdraw-btn-group .btn-danger:hover {
	  background-color: #bb2d3b;
	  border-color: #bb2d3b;
	}
		
	.withdraw-form {
	  width: 100%;
	}
 	
	.withdraw-title,
	.withdraw-notice {
	  text-align: left;
	}
	
	.withdraw-center {
	  width: 100%;
	  max-width: 320px;
	  margin: 0 auto;
	}
	.withdraw-btn-group .btn-secondary {
	  background-color: #111;
	  border: 1px solid #111;
	  color: #fff;
	}
	
	.withdraw-page .withdraw-btn-group {
	  display: flex;
	  align-items: center;
	}
	
	/* ================================
	  비밀번호 재확인
	================================ */	
	.password-check-center {
	  width: 100%;
	  max-width: 420px;
	  margin: 0 auto;
	}
	
	.password-check-page {
	  width: 100%;
	}
	
	.password-btn-group {
	  display: flex;
	  gap: 8px;
	}

	/* ==============================
   		모바일 마이페이지 (데스크톱)
	================================ */
	/* 모바일 마이페이지 상단 네비 */
	.mypage-top-nav {
	  display: none;
	}
	
	.mypage-sidebar {
	  display: block;
	}	

	/* ==============================
   	   반응형
	================================ */
	
	/* 358px 이하 → 2열 */
	@media (max-width: 358px) {
	  .mypage-top-nav {
	    grid-template-columns: repeat(2, 1fr);
	  }
	}
	
	/* 359px 이상 → 4개 */
	@media (min-width: 359px) and (max-width: 768px) {
	  .mypage-top-nav {
	    grid-template-columns: repeat(4, 1fr);
	  }
	}
	
	@media (max-width: 420px) {
	  .birth-row {
	    flex-wrap: wrap;
	  }
	
	  .birth-row > .col {
	    flex: 1 1 48%;
	  }
	
	  .birth-row > .col:last-child {
	    flex: 1 1 100%;
	  }
	  
	   .d-flex.align-items-center.gap-2 {
	    flex-wrap: wrap;
	  }
	
	  .phone-box {
	    flex: 1 1 100%;
	  }
	
	  .phone-dash {
	    display: none;
	  }
	}
	
	@media (max-width: 576px) {
	 .recent-order-footer {
	    flex-direction: column;
	    align-items: flex-start;
	    gap: 8px;
	  }
	  .social-img-btn {
	    height: 48px;
	  }
	
	  .social-login {
	    gap: 3px;  /* ⭐ 핵심 */
	  }
	
	  .withdraw-page {
	    max-width: 100%;
	  }
	  
	  .withdraw-btn-group {
	    flex-direction: column;
	  }
	  
	  .register-card {
	    max-width: 100%;
	  }

	  .birth-group {
	    flex-wrap: wrap;
	    gap: 6px;
	  }
	
	  .birth-group select {
	    width: 100%;
	  }
	
	  .phone-group {
	    display: flex;
	    gap: 6px;
	  }
	
	  .phone-box {
	    width: 100%;
	  }
	
	  .phone-dash {
	    display: none; /* 하이픈 제거 */
	  }
	 
	  .register-card .input-group {
	    flex-direction: column;
	    align-items: stretch;
	  }
	  
	  .register-card .input-group .btn {
	    width: 100%;
	    margin-top: 8px;
	  }
	  
	  .id-input-wrap {
	    flex-direction: column;
	  }
	
	  .id-input-wrap .btn {
	    width: 100%;
	    margin-top: 3px;
	  }	  
	  
	  .profile-center {
	  	max-width: 100%;
	  }
	}
	
	@media (max-width: 768px) {
	/* 마이페이지 최근 주문 */	
	 .order-summary-item {
	    flex-direction: column;
	    align-items: flex-start;
	    gap: 4px;
	  }
	
	  .order-right {
	    font-size: 13px;
	  }
	
	  .mypage-content {
	    margin-left: 0;
	    padding: 0 12px;      /* 모바일 여백 */
  		max-width: 100%;
	  }
	  
	  .profile-center {
	    max-width: 640px;
  	 	margin: 0 auto;
	  }	
	 
	  /* 사이드바 레이아웃 완전히 분리 */
	  .mypage-wrapper {
	    display: block;       /* flex 영향 제거 */
	  }
	  
	  .withdraw-page {
	    max-width: 100%;
	  }
  
	  .mypage-content.withdraw-page {
	    padding: 0 12px;
	  }
	  
	/* =========================
	   모바일 전용 상단 네브바(사이드바)
	========================= */
	  .mypage-top-nav {
	    display: grid;
	    gap: 8px;
	    margin: 0 12px 30px;
	  }
	  
	  .mypage-sidebar {
	    display: none;
	  }
	
	  .profile-center {
	    margin: 0 auto;
	  }
	  
	  .mypage-top-item {
		display: flex;
		align-items: center;
		justify-content: center;
		
		text-align: center;
	    line-height: 1.2;
	
  	    white-space: nowrap;    
	    word-break: keep-all; 
	  }
	  
	/* =========================
	   모바일 버튼 스타일
    ========================= */
	  .mypage-top-nav a {
	    height: 36px;
	    padding: 0 8px;
	
	    display: flex;
	    align-items: center;
	    justify-content: center;
			
	    font-size: clamp(10px, 2.6vw, 13px);
 	    font-weight: 500;
	
	    border-radius: 16px;
	    
	    white-space: nowrap;        /* 무조건 1줄 */ 
	
	    background: #ffffff;
	    	    
	    border: 1px solid rgba(31, 61, 46, 0.35);
	    color: #1f3d2e;
	    
 		text-decoration: none;
	
	    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
	    
	    transition: background 0.2s ease,
             		box-shadow 0.2s ease,
              		transform 0.2s ease;
	  }
	
	  /* hover */
	  .mypage-top-nav a:hover {
	    background: rgba(47, 143, 91, 0.16);
		transform: translateY(-1px);
		box-shadow: 0 4px 10px rgba(0,0,0,0.06);
	  }
	
	  /* active */
	  .mypage-top-nav a.active {
	    background: rgba(47, 143, 91, 0.22);
		color: #1f6f45;
		border-color: #2f8f5b;
	    box-shadow: 0 4px 12px rgba(47, 143, 91, 0.20);
	  }
	  
	.withdraw-center {
	    width: 100% !important;
	    max-width: 100% !important;
	  }
	
	  .withdraw-form {
	    width: 100% !important;
	  }
	
	  .withdraw-btn-group {
	    display: flex;
	    flex-direction: column;
	    gap: 12px;
	    width: 100%;
	  }
	
	  .withdraw-btn-group .btn {
	    width: 100%;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    height: 32px;
	    padding: 4px 12px;
	  }
	  
	  .card-footer.d-flex {
	    flex-direction: column !important;  /* 가로 → 세로 */
	    gap: 12px;
	  }
	
	  .card-footer .btn {
	    width: 100%;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    height: 32px;   /* 모바일에서 살짝 크게 */
	    padding: 4px 12px;
	  }
	}