/* ══════════════════════════════════
   BW리뷰 iOS 느낌 — 기존 색감 유지
   구조/질감만 iOS 스타일 적용
   ══════════════════════════════════ */

/* ──────── 전역 ──────── */
body {
    background: #f2f2f7;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Noto Sans KR', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ──────── 헤더 — 블러 글래스 ──────── */
.app-header {
    background: rgba(254,243,199,0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 0.5px 0 rgba(0,0,0,0.1);
    padding: 10px 16px;
}

/* ──────── 페이지 타이틀 — iOS 대형 타이틀 ──────── */
.page-title {
    font-size: 28px;
    font-weight: 800;
    text-align: left;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}
.page-subtitle {
    text-align: left;
    font-size: 15px;
    margin-bottom: 20px;
}

/* ──────── 검색창 — iOS 스타일 ──────── */
.campaign-search-input {
    background: rgba(118,118,128,0.12);
    border: none;
    border-radius: 10px;
    padding: 10px 40px;
    font-size: 16px;
}
.campaign-search-input:focus {
    background: rgba(118,118,128,0.18);
    border: none;
    box-shadow: none;
}
.campaign-search-input::placeholder { color: #8e8e93; }
.campaign-search-clear {
    background: rgba(118,118,128,0.3);
    color: #fff;
    width: 20px; height: 20px;
    font-size: 13px; line-height: 20px;
}

/* ──────── 카드 — border 없이 그림자만 ──────── */
.campaign-card {
    background: #fff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.15s ease;
}
.campaign-list .campaign-card:active { transform: scale(0.98); }

.campaign-remain-badge { border-radius: 12px; }
.campaign-closed { border-radius: 12px; }
.campaign-apply-btn { border-radius: 20px; box-shadow: none; }

/* 일정 블록 */
.sch-block { border: none; border-radius: 8px; background: #f0f0f5; }
.sch-block.sch-today { border: none; }

/* 내 진행 */
.campaign-card-my { border-top: 1px solid #f0f0f0; }

/* ──────── 하단 네비 — 블러 글래스 ──────── */
.bottom-nav {
    background: rgba(255,255,255,0.88);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 0.5px solid rgba(0,0,0,0.08);
}
.nav-label { font-size: 10px; }

/* ──────── 내작업 카드 ──────── */
.status-card {
    background: #fff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* 아이디 행 */
.id-row { border: none; border-radius: 10px; background: #f2f2f7; }

/* ──────── 폼 ──────── */
.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    border-radius: 10px;
}

/* ──────── 버튼 — 라운드 더 둥글게 ──────── */
.btn { border-radius: 12px; }
.btn-sm { border-radius: 10px; }
.btn-xs { border-radius: 8px; }

/* ──────── 공지/FAQ ──────── */
.notice-card, .faq-item {
    background: #fff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* ──────── 검색 입력 ──────── */
.search-input {
    background: rgba(118,118,128,0.12);
    border: none;
    border-radius: 10px;
}
.search-input:focus {
    background: rgba(118,118,128,0.18);
    border: none;
    box-shadow: none;
}

/* ──────── 캠페인 상세 ──────── */
.detail-section {
    background: #fff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* ──────── task 페이지 ──────── */
.id-tab { border: none; border-radius: 20px; }
.id-status-bar { border: none; border-radius: 10px; }
.bank-preset-btn { border-radius: 10px; }

/* ──────── 토스트 ──────── */
.reviewer-toast { border-radius: 22px; }

/* ──────── 채팅 배너 — 블러 ──────── */
.chat-top-banner {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
