/* 마이페이지 전체 컨테이너 */
.mypage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 80vh;
  font-family: 'iceFont', sans-serif;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .mypage-container {
    padding: 1rem;
    min-height: 100vh;
  }
  
  .login-box {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .form-group input {
    font-size: 16px; /* 모바일에서 자동 확대 방지 */
  }
  
  .postcode-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .postcode-btn {
    width: 100%;
  }
  
  .login-links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .mypage-content-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .mypage-title {
    font-size: 1.5rem;
  }
  
  .tab-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tab-btn {
    flex: 1;
    min-width: 120px;
    font-size: 0.9rem;
  }
  
  /* 프로필 폼 모바일 스타일 */
  .profile-form .form-group {
    margin-bottom: 1.2rem; /* 모바일에서 간격 조정 */
  }
  
  .profile-form .form-group:last-of-type {
    margin-bottom: 2.5rem; /* 모바일에서 상세주소와 버튼 간격 조정 */
  }
  
  .save-profile-btn {
    margin-top: 1.5rem; /* 모바일에서 상단 여백 조정 */
    max-width: 100%; /* 모바일에서 전체 너비 사용 */
    padding: 1rem 1.5rem; /* 모바일에서 패딩 증가 */
  }
  
  /* 모바일 네비게이션 */
  .mobile-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e1e5e9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 50;
  }
  
  .mobile-menu.hidden {
    display: none;
  }
  
  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu-list li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    font-family: 'iceFont', sans-serif;
    transition: background-color 0.3s ease;
  }
  
  .mobile-nav-link:hover {
    background-color: #f8f9fa;
  }
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
}

/* 마이페이지 내부 헤더만 스타일 적용 */
.mypage-container .mypage-content-header {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mypage-container .mypage-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  font-family: 'iceFont';
}

/* 로그인 섹션 */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  font-family: 'iceFont', sans-serif;
}

.login-section.hidden {
  display: none;
}

.login-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-logo {
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-logo img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.login-title {
  /* font-size: 2rem; */
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #666;
  font-family: 'iceFont';
}

.login-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-family: 'iceFont', sans-serif;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-weight: bold;
  color: #333;
  font-family: 'iceFont', sans-serif;
}

.form-group input {
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: 'iceFont', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #007bff;
}

.login-btn {
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: 'iceFont', sans-serif;
}

.login-btn:hover {
  transform: translateY(-2px);
}

.login-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-family: 'iceFont', sans-serif;
}

.login-links a {
  color: #0066cc;
  text-decoration: none;
  font-family: 'iceFont', sans-serif;
}

.login-links a:hover {
  text-decoration: underline;
}

/* 회원가입 폼 추가 스타일 */
#register-section .login-box {
  max-width: 500px;
}

#register-section .form-group input {
  font-size: 0.95rem;
}

#register-section .login-btn {
  margin-top: 0.5rem;
}

/* 우편번호 검색 스타일 */
.postcode-group {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.postcode-group input {
  flex: 1;
}

.postcode-btn {
  background: linear-gradient(135deg, #0066CC, #0052a3);
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: 'iceFont', sans-serif;
  white-space: nowrap;
}

.postcode-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0052a3, #004080);
}

/* 주소 입력 필드 스타일 */
.form-group input[readonly] {
  background-color: #f8f9fa;
  color: #495057;
  cursor: not-allowed;
}

.form-group input[readonly]:focus {
  border-color: #6c757d;
  box-shadow: none;
}

/* 비밀번호 확인 불일치 시 스타일 */
.form-group input.error {
  border-color: #dc3545;
}

.form-group input.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* 이메일 중복 체크 스타일 */
.email-status {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'iceFont', sans-serif;
  display: none;
}

.email-status.email-available {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.email-status.email-duplicate {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.form-group input.email-available {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-group input.email-available:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-group input.email-duplicate {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.email-duplicate:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* 비밀번호 힌트 */
.password-hint {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.25rem;
  font-style: italic;
}

/* 비밀번호 상태 메시지 */
.password-status {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.password-status.success {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  padding-left: 0.5rem;
}

.password-status.error {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  padding-left: 0.5rem;
}

.password-status.loading {
  color: #007bff;
  background-color: rgba(0, 123, 255, 0.1);
  padding-left: 0.5rem;
}

.password-status.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #007bff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 마이페이지 메인 섹션 */
.mypage-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: 'iceFont', sans-serif;
}

.logout-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'iceFont', sans-serif;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 사용자 정보 */
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-bottom: 1px solid #e1e5e9;
}

.user-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: #333;
  font-family: 'iceFont';
}

.user-email {
  color: #666;
  margin: 0.25rem 0 0 0;
  font-family: 'iceFont', sans-serif;
}

/* 마이페이지 콘텐츠 */
.mypage-content {
  padding: 2rem;
}

.content-tabs {
  display: flex;
  border-bottom: 1px solid #e1e5e9;
  font-family: 'iceFont', sans-serif;
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: #666;
  transition: all 0.3s ease;
  font-family: 'iceFont', sans-serif;
}

.tab-btn.active {
  color: #007bff;
  border-bottom: 3px solid #007bff;
}

.tab-btn:hover {
  background: #f8f9fa;
}

.tab-content {
  display: none;
  padding: 2rem;
  font-family: 'iceFont', sans-serif;
}

.tab-content.active {
  display: block;
}

/* 예약 내역 */
.reservations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reservations-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: #333;
  font-family: 'iceFont';
}

.refresh-btn {
  background: #0066cc;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'iceFont', sans-serif;
}

.refresh-btn:hover {
  background: #0052a3;
}

.reservations-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  font-family: 'iceFont', sans-serif;
}

.reservation-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: #333;
  font-family: 'iceFont';
}

.reservation-item p {
  margin: 0.25rem 0;
  color: #666;
  font-family: 'iceFont', sans-serif;
}

.reservation-item .status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.5rem;
  font-family: 'iceFont', sans-serif;
}

.reservation-item .status.pending {
  background: #fff3cd;
  color: #856404;
}

.reservation-item .status.confirmed {
  background: #d1ecf1;
  color: #0c5460;
}

.reservation-item .status.completed {
  background: #d4edda;
  color: #155724;
}

.reservation-item .status.cancelled {
  background: #f8d7da;
  color: #721c24;
}

/* 프로필 폼 */
.profile-form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 2rem 0;
  color: #333;
  font-family: 'iceFont';
}

.profile-form .form-group {
  margin-bottom: 1.5rem;
}

.profile-form .form-group:last-of-type {
  margin-bottom: 3rem;
}

.save-profile-btn {
  background: #0066cc;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: 'iceFont', sans-serif;
  margin-top: 2rem;
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.save-profile-btn:hover {
  transform: translateY(-2px);
}

/* 유틸리티 클래스 */
.hidden {
  display: none !important;
}

/* 사이드 버튼 그룹 스타일 */
#side_btn_group{
    width: 45px !important;
    height: 100px !important;
    min-width: 45px !important;
    min-height: 100px !important;
    max-width: 45px !important;
    max-height: 100px !important;
    right: 2.5rem !important;
    top: 70vh !important;
    position: absolute !important;
    z-index: 50 !important;
    background-color: rgba(217,217,217,0.7) !important;
    span{
        &:hover {
            &:first-child {
                border: 1px solid #19499E !important;

                p {
                    color: #19499E !important;
                }
            }
            &:nth-child(2) {
                background-image: url("../image/seablueBalloon.png") !important;
                p{
                    color: white !important;
                }
            }
            &:nth-child(3) {
                background-image: url("../image/yellowBalloon.png") !important;
                p{
                    color: black !important;
                }
            }
        }

        &:nth-child(n+2){
            p{
                font-family: "pageNum5", sans-serif !important;
                font-weight: 500 !important;
            }
        }

    }
}

/* 예약 통계 섹션 */
.reservation-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.stat-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ddd;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #0066CC;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #666;
}

/* 예약 내역 카드 스타일 */
.reservation-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reservation-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.reservation-id {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reservation-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.reservation-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-unknown {
    background: #e2e3e5;
    color: #383d41;
}

.reservation-date-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.reservation-date-time i {
    color: #0066cc;
}

.reservation-content {
    margin-bottom: 20px;
}

.reservation-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-item label i {
    color: #0066cc;
    width: 16px;
}

.info-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.info-item .price {
    color: #0066cc;
    font-weight: 600;
}

.reservation-remark {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.reservation-remark label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reservation-remark p {
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.reservation-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cancel-btn {
    background: #dc3545;
    color: white;
}

.cancel-btn:hover {
    background: #c82333;
}

/* 예약 없음 상태 */
.no-reservations {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-reservations-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-reservations h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.no-reservations p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.new-reservation-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.new-reservation-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* 예약 필터 버튼 스타일 */
.reservation-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #f0f0f0;
}

.filter-btn.active {
  background: #0066CC;
  color: white;
  border-color: #0066CC;
}

/* 예약 카드 스타일 */
.reservation-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reservation-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reservation-status {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.status-0 { background: #fff3cd; color: #856404; } /* 대기중 */
.status-1 { background: #d1ecf1; color: #0c5460; } /* 확정 */
.status-2 { background: #d4edda; color: #155724; } /* 완료 */
.status-3 { background: #f8d7da; color: #721c24; } /* 취소 */

.reservation-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.cancel-btn {
  padding: 6px 12px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s ease;
}

.cancel-btn:hover {
  background: #c82333;
}

.cancel-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

.reservation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  font-weight: 500;
}

/* SweetAlert 아이콘 커스텀 스타일 */
.swal2-icon-custom {
    color: #0066CC !important;
}

.swal2-icon-custom .swal2-icon-content {
    color: #0066CC !important;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #0066CC !important;
}

div:where(.swal2-icon).swal2-warning [class^='swal2-warning-circular-line'] {
    border-color: #0066CC !important;
}

div:where(.swal2-icon).swal2-success {
    border-color: #0066CC !important;
}

div:where(.swal2-icon).swal2-success [class^='swal2-success-circular-line'] {
    border-color: #0066CC !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
    border-color: #0066CC !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-line {
    background-color: #0066CC !important;
}

/* SweetAlert 성공 아이콘의 체크 표시 색상 */
div:where(.swal2-icon).swal2-success .swal2-success-line-tip {
    background-color: #0066CC !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-line-long {
    background-color: #0066CC !important;
}

/* SweetAlert 확인 버튼 색상 */
.swal2-confirm {
    background-color: #0066CC !important;
}

.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.5) !important;
}

/* 비밀번호 입력 그룹 */
.password-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-group input {
  flex: 1;
  padding-right: 40px;
}

.password-toggle-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.password-toggle-btn:hover {
  color: #0066CC;
}

.password-toggle-btn:focus {
  outline: none;
  color: #0066CC;
}

/* 즐겨찾기 버튼 */
.favorite-btn {
  background: none;
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.3s ease;
  color: #ddd;
}

.favorite-btn:hover {
  border-color: #ffd700;
  color: #ffd700;
  transform: scale(1.1);
}

.favorite-btn.active {
  border-color: #0066CC;
  background-color: #0066CC;
  color: white;
}

.favorite-btn.active:hover {
  border-color: #0052a3;
  background-color: #0052a3;
}

/* 즐겨찾기된 예약 카드 */
.reservation-card.favorite {
  border: 2px solid #0066CC;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.reservation-card.favorite .reservation-card-header {
  background: linear-gradient(135deg, #0066CC, #0052a3);
  color: white;
}

/* 예약 ID 영역 */
.reservation-id {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 중복 체크 상태 스타일 */
.form-group input.phone-available {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-group input.phone-available:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-group input.phone-duplicate {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.phone-duplicate:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* 상태 메시지 스타일 */
.status-message {
    font-size: 12px;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.status-message.available {
    color: #28a745;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.status-message.duplicate {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* 비밀번호 변경 폼 */
.password-change-form {
  margin-top: 2rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.password-change-form h3 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.change-password-btn {
  width: 100%;
  padding: 12px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.change-password-btn:hover {
  background: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.change-password-btn:active {
  transform: translateY(0);
}

/* 비밀번호 변경 폼 반응형 */
@media (max-width: 768px) {
  .password-change-form {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .password-change-form h3 {
    font-size: 1.1rem;
  }
  
  .change-password-btn {
    padding: 10px;
    font-size: 15px;
  }
} 