@charset "UTF-8";
@import url(reset.css);
@import url(fonts.css);

/* ========================================
   기본 변수 (폰트, 고정 색상)
   ======================================== */
:root{
    --Mice:"MiceGothic";
    --nexon:"Nexon-Lv2-Gothic";
    --preten:"Pretendard";
    --paper:"Paperlogy";
    --fontweight-light:100;
    --fontweight-regular:400;
    --fontweight-medium:500;
    --fontweight-semibold:600;
    --fontweight-bold:700;
    --fontweight-exbold:800;
    --color-blue:#4584FF;
    --color-light-blue:#75e1ff;
    --color-red:#ff5050;
    --color-light-red:#ff9a9a;
    --color-pink:#fc6e88;
    --color-green:rgba(0, 167, 60, 0.6);
    --color-yellow:#f6cd60;
}

/* ========================================
   테마 색상 변수
   ======================================== */
:root {
    /* 배경색 */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-gradient: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);

    /* 카드 배경 */
    --card-bg: #FFFFFF;
    --card-bg-secondary: rgba(248, 250, 252, 0.8);
    --card-bg-hover: #F8FAFC;
    --card-border: rgba(0, 0, 0, 0.08);
    --card-backdrop: blur(10px);

    /* 텍스트 색상 */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #6E7687;
    --text-muted: #CBD5E1;

    /* GNB 배경 */
    --gnb-bg: #1E293B;
    --gnb-text: #FFFFFF;

    /* 아이콘 배경 */
    --icon-bg-light: rgba(15, 23, 42, 0.05);
    --icon-bg-hover: rgba(15, 23, 42, 0.1);

    /* 통계 아이템 배경 */
    --stat-item-bg: rgba(15, 23, 42, 0.04);
    --stat-item-hover: rgba(15, 23, 42, 0.08);

    /* 프로그레스 바 배경 */
    --progress-bg: rgba(15, 23, 42, 0.1);

    /* 강조 색상 (테마 무관) */
    --color-primary: #DE7B5D;
    --color-primary-hover: #C4674B;
    --color-accent-hover: #C4674B;
    --color-secondary: #DE7B5D;
    --color-secondary-hover: #C4674B;
    --color-success: #10B981;
    --color-success-hover: #059669;
    --color-warning: #F59E0B;
    --color-warning-hover: #D97706;
    --color-danger: #EF4444;
    --color-danger-hover: #DC2626;

    /* 그림자 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* 버튼 */
    --btn-secondary-bg: rgba(15, 23, 42, 0.06);
    --btn-secondary-border: rgba(0, 0, 0, 0.08);
    --btn-secondary-hover-bg: rgba(222, 123, 93, 0.1);
    --btn-secondary-hover-border: rgba(222, 123, 93, 0.3);

    /* 보더 */
    --border-color: rgba(0, 0, 0, 0.08);

    /* 대시보드 전용 */
    --dashboard-bg: #F3F4F6;
    --dashboard-header-bg: #FFFFFF;
    --dashboard-card-bg: #F3F4F6;
    --dashboard-card-content-bg: #FFFFFF;
    --dashboard-border: rgba(0, 0, 0, 0.08);
    --indicator-number-bg: linear-gradient(90deg, #DE7B5D 0%, #C4674B 100%);
    --indicator-icon-bg: rgba(222, 123, 93, 0.5);
    --population-icon-bg: #FDF2EF;
    --dashboard-text-primary: #384150;
    --dashboard-text-white: #384150;
    --update-time-color: #5F646E;
    --promise-bar-bg: #FDF2EF;
    --dashboard-header-text: #444444;
}


html{font-family:var(--nexon);font-weight:var(--fontweight-light);line-height:normal;font-size:15px;}
body {
    box-sizing: border-box;
    font-size: 15px;
    background: var(--bg-primary);
    color: var(--text-primary);
}
html { overflow-y: scroll; }
body.prevent{height:100vh; height:100dvh; overflow:hidden}
button,input,select,textarea{font-family:var(--nexon)}
::-webkit-scrollbar { width: 3px; height: 6px;}
::-webkit-scrollbar-thumb { background:#EAECEF transparent; border-radius: 3px;}
::-webkit-scrollbar-track { background: transparent;}
* { scrollbar-width: thin; scrollbar-color: #EAECEF transparent;}

.wrap {
    background: var(--bg-primary);
    min-height: 100vh;
    width: 100%;
}

/* ========================================
   GNB (일반 페이지용)
   ======================================== */
#gnb {
    width: 100%;
    height: 100px;
    background: var(--gnb-bg);
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}
#gnb.fixed {position: fixed; top: 0; left: 0; z-index: 1000; transform: translateY(0);}
#gnb.hidden {transform: translateY(-100%);}
.gnb-wrap {
    width: 1600px;
    margin: 0 auto;
    font-family: var(--paper);
    color: var(--gnb-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-box {width: 300px; height: auto;}
#logo {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--gnb-text);
    text-decoration: none;
}
#logo img {width: 50px;}
#logo h1 {
    font-size: 24px;
    font-weight: var(--fontweight-bold);
    margin-left: 10px;
    color: var(--gnb-text);
}

/* ========================================
   대시보드 헤더 (GNB - 대시보드용)
   ======================================== */
.dashboard-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background: var(--dashboard-header-bg);
    border-bottom: 1px solid var(--dashboard-border);
    width: 100%;
}

/* 네비게이션 통합 헤더 */
.dashboard-header.has-nav {
    height: 80px;
    flex-shrink: 0;
}

.dashboard-header.has-nav .header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.header-left img {
    height: 32px;
    width: auto;
    cursor: pointer;
}

.header-title {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--paper);
    color: #333;
    cursor: pointer;
}

.header-inner {
    width: 100%;
    max-width: 1800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

/* 좌측: 솔향강릉 로고 + 날씨 */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 날씨 정보 */
.weather-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-icon {
    width: 48px;
    height: 48px;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.weather-detail .temp {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
}

.weather-detail .temp-range {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1;
}

/* 중앙: 네비게이션 */
.header-center {
    display: flex;
    align-items: center;
}

/* 헤더 인라인 네비게이션 */
.header-nav-inline {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 24px);
}

.header-nav-inline .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;   
    gap: 8px;
    padding: clamp(8px, 0.8vw, 12px) clamp(12px, 1.2vw, 20px);
    background: transparent;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: clamp(50px, 3.8vw, 60px);
    text-decoration: none;    
    box-sizing: border-box;  
}

.header-nav-inline .nav-btn img {
    width: 24px;
    height: 24px;
}

.header-nav-inline .nav-btn span {
    font-size: clamp(16px, 1.25vw, 20px);
    font-weight: 500;
    font-family: var(--paper);
    color: var(--text-secondary);
    white-space: nowrap;
}

.header-nav-inline .nav-btn:hover {
    background: rgba(222, 123, 93, 0.15);
}

.header-nav-inline .nav-btn:hover span {
    color: var(--color-secondary);
}

.header-nav-inline .nav-btn.active {
    background: var(--color-secondary);
}

.header-nav-inline .nav-btn.active span {
    color: #FFFFFF;
}

.header-nav-inline .nav-btn.active img {
    filter: brightness(0) invert(1);
}

/* 우측: 날씨 */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ========================================
   공통 카드 스타일
   ======================================== */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--paper);
    color: var(--dashboard-text-white);
    margin: 0;
}

.update-time {
    font-size: 11px;
    color: var(--update-time-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.card-content {
    width: 100%;
}

/* ========================================
   공통 아이콘 원형 스타일
   ======================================== */
.stat-icon-circle,
.card-icon-circle,
.legend-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
}

.stat-icon-circle.green,
.card-icon-circle.green,
.legend-icon.green {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10B981;
}

.stat-icon-circle.blue,
.card-icon-circle.blue,
.legend-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3B82F6;
}

.stat-icon-circle.pink,
.card-icon-circle.pink,
.legend-icon.pink {
    background: rgba(236, 72, 153, 0.2);
    border: 2px solid #EC4899;
}

.stat-icon-circle.red,
.card-icon-circle.red,
.legend-icon.red {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #EF4444;
}

.stat-icon-circle img,
.card-icon-circle img {
    width: 24px;
    height: 24px;
}

/* ========================================
   공통 통계 데이터 스타일
   ======================================== */
.stat-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number,
.card-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-number small,
.card-number small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-left: 2px;
}

.stat-label,
.card-label {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ========================================
   반응형 유틸리티
   ======================================== */
@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .gnb-wrap {
        width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* 헤더 */
    .header-inner {
        padding: 0 20px;
    }

    .header-title {
        display: none;
    }

    .weather-detail .temp {
        font-size: 16px;
    }

    .weather-detail .temp-range {
        font-size: 10px;
    }
}

/* ========================================
   햄버거 버튼 (기본 숨김)
   ======================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   사이드 메뉴 (aside)
   ======================================== */
.side-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-menu-overlay.open {
    display: block;
    opacity: 1;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.side-menu.open {
    left: 0;
}

.side-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.side-menu-header img {
    height: 22px;
    width: auto;
    cursor: pointer;
}

.side-menu-title {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--paper);
    color: #333;
    flex: 1;
}

.side-menu-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #94A3B8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.side-menu-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #333;
}

.side-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    flex: 1;
}

.side-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.side-nav-btn:hover {
    background: rgba(238, 120, 0, 0.06);
}

.side-nav-btn.active {
    background: rgba(238, 120, 0, 0.1);
}

.side-nav-btn img {
    width: 22px;
    height: 22px;
}

.side-nav-btn.active img {
    filter: none;
}

.side-nav-btn span {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--paper);
    color: var(--text-secondary);
}

.side-nav-btn.active span {
    color: var(--color-secondary);
    font-weight: 600;
}

.side-menu-weather {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.side-menu-weather .weather-icon {
    width: 32px;
    height: 32px;
}

.side-menu-weather .temp {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.side-menu-weather .temp-range {
    font-size: 11px;
    color: var(--update-time-color);
}

@media (max-width: 768px) {
    /* 햄버거 버튼 표시 */
    .mobile-menu-btn {
        display: flex;
    }

    /* 헤더 모바일 */
    .dashboard-header.has-nav {
        height: 60px;
    }

    .dashboard-header.has-nav .header-top {
        padding: 0;
    }

    .header-inner {
        padding: 0 16px;
        position: relative;
        justify-content: center;
    }

    /* 햄버거: 좌측 고정 */
    .header-left {
        position: static;
        gap: 8px;
    }

    .header-left .mobile-menu-btn {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-left img {
        height: 28px;
    }

    .header-title {
        display: inline;
        font-size: 16px;
    }

    /* 네비게이션 & 날씨 숨김 */
    .header-center {
        display: none;
    }

    .header-right {
        display: none;
    }

    /* GNB 일반 */
    #gnb {
        height: 60px;
    }

    .gnb-wrap {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    #logo img {
        width: 36px;
    }

    #logo h1 {
        font-size: 18px;
    }
}

/* ── Alert ── */
.alert-wrap {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 360px;
    max-width: 480px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    font-family: 'Pretendard', 'Nexon-Lv2-Gothic', sans-serif;
    animation: alertSlideIn 0.3s ease;
}

.alert.closing {
    animation: alertSlideOut 0.25s ease forwards;
}

.alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon svg {
    width: 20px;
    height: 20px;
}

.alert.info .alert-icon    { background: #F1F5F9; color: #64748B; }
.alert.success .alert-icon { background: #ECFDF5; color: #10B981; }
.alert.warning .alert-icon { background: #FFFBEB; color: #F59E0B; }
.alert.error .alert-icon   { background: #FEF2F2; color: #EF4444; }

.alert-content {
    flex: 1;
    min-width: 0;
}

.alert-title {
    font-size: 17px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
}

.alert-message {
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
    line-height: 1.4;
    margin-top: 2px;
}

.alert-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    border-radius: 6px;
    transition: all 0.15s;
    padding: 0;
}

.alert-close:hover {
    background: #F1F5F9;
    color: #475569;
}

.alert-close svg {
    width: 18px;
    height: 18px;
}

@keyframes alertSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes alertSlideOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-20px); }
}

/* ====== 토스트 메시지 스타일 ====== */
.toast-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toast-backdrop.show {
  display: block;
  opacity: 1;
}

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 500px;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.toast::before {
  content: '';
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px 0 0 10px;
}

.toast.success::before {
  background: #28a745;
}

.toast.error::before {
  background: #dc3545;
}

.toast.warning::before {
  background: #ffc107;
}

.toast.info::before {
  background: #2196f3;
}

.toast-message {
  flex: 1;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 8px;
}

.toast-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #999;
  font-size: 20px;
  line-height: 1;
  transition: all 0.2s ease;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  background: #f0f0f0;
  color: #333;
}

/* 토스트 타입별 아이콘 추가 */
.toast.success .toast-message::before {
  content: '✅';
  margin-right: 8px;
}

.toast.error .toast-message::before {
  content: '❌';
  margin-right: 8px;
}

.toast.warning .toast-message::before {
  content: '⚠️';
  margin-right: 8px;
}

.toast.info .toast-message::before {
  content: 'ℹ️';
  margin-right: 8px;
}

/* ====== 확인 팝업 스타일 ====== */
.confirm-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.confirm-backdrop.show {
  opacity: 1;
}

.confirm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  min-width: 400px;
  max-width: 500px;
  opacity: 0;
  transition: all 0.3s ease;
}

.confirm-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.confirm-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.confirm-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.confirm-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.confirm-close:hover {
  background: #e5e7eb;
  color: #333;
}

.confirm-body {
  padding: 32px 24px;
  text-align: center;
}

.confirm-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.confirm-modal.info .confirm-icon {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}

.confirm-modal.info .confirm-icon::before {
  content: 'ℹ️';
}

.confirm-modal.warning .confirm-icon {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.confirm-modal.warning .confirm-icon::before {
  content: '⚠️';
}

.confirm-modal.danger .confirm-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.confirm-modal.danger .confirm-icon::before {
  content: '🗑️';
}

.confirm-message {
  font-size: 15px;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

.confirm-footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

.btn-confirm-cancel,
.btn-confirm-ok {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-width: 80px;
}

.btn-confirm-cancel {
  background: #6c757d;
  color: white;
}

.btn-confirm-cancel:hover {
  background: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.btn-confirm-ok {
  background: #2196f3;
  color: white;
}

.confirm-modal.danger .btn-confirm-ok {
  background: #dc3545;
}

.confirm-modal.danger .btn-confirm-ok:hover {
  background: #c82333;
}

.btn-confirm-ok:hover {
  background: #1976d2;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

/* 모바일 반응형 */
@media (max-width: 576px) {
  .confirm-modal {
    min-width: 90%;
    max-width: 90%;
  }

  .confirm-body {
    padding: 24px 20px;
  }

  .confirm-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

