/* ==================== Reset & Base ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: #1a73e8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ==================== Navbar ==================== */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}
.nav-logo:hover { text-decoration: none; }

.nav-links { display: flex; gap: 1.5rem; }
.nav-link { color: #555; font-size: 0.95rem; }
.nav-link:hover { color: #1a73e8; text-decoration: none; }

/* ==================== Container ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex: 1;
}

/* ==================== Home Hero ==================== */
.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem;
}

.hero-logo { font-size: 4rem; margin-bottom: 1rem; }
.hero-title { font-size: 2.2rem; font-weight: 700; color: #333; margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1rem; color: #666; margin-bottom: 2rem; }

/* ==================== Search ==================== */
.search-form { width: 100%; max-width: 680px; }
.search-form.compact { margin-bottom: 1.5rem; }

.search-box {
    display: flex;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 28px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box:focus-within {
    border-color: #1a73e8;
    box-shadow: 0 2px 8px rgba(26,115,232,0.15);
}

.search-select {
    border: none;
    background: #f8f8f8;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: #555;
    border-right: 1px solid #e0e0e0;
    outline: none;
    cursor: pointer;
    min-width: 120px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    outline: none;
    min-width: 0;
}

.search-btn {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.search-btn:hover { background: #1557b0; }

/* ==================== History ==================== */
.history-section {
    width: 100%;
    max-width: 680px;
    margin-top: 2rem;
}
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.history-header h3 { font-size: 0.9rem; color: #666; }

.history-list { display: flex; flex-direction: column; }
.history-date-group { margin-bottom: 0.25rem; }
.history-date-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.5rem 0.5rem 0.15rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.1rem;
}
.history-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    color: #333;
    transition: background 0.15s;
}
.history-item:hover { background: #f0f0f0; text-decoration: none; }
.history-icon { font-size: 0.9rem; opacity: 0.5; }
.history-number { font-weight: 500; font-family: monospace; font-size: 0.95rem; }
.history-carrier { font-size: 0.8rem; color: #888; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; }
.history-time { margin-left: auto; font-size: 0.8rem; color: #999; }

/* ==================== Result ==================== */
.result-page { max-width: 800px; margin: 0 auto; }

.result-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    overflow: hidden;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.result-info { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.result-info h2 { font-size: 1.3rem; font-family: monospace; }

.carrier-badge {
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.status-badge {
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.fav-active { color: #f59e0b; font-weight: 600; }

/* ==================== Customs Info ==================== */
.customs-info {
    padding: 1.5rem;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}
.customs-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.customs-info-header h3 { font-size: 1rem; margin: 0; }

.btn-customs-detail {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #fff;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn-customs-detail:hover {
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
}
.btn-customs-link { color: #0077cc; border-color: #0077cc; }
.btn-customs-link:hover { background: #0077cc; color: #fff; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.info-item {}
.info-label { display: block; font-size: 0.8rem; color: #888; margin-bottom: 2px; }
.info-value { font-weight: 600; font-size: 0.95rem; }

/* ==================== Customs Detail Table ==================== */
.customs-detail-panel {
    margin-top: 1rem;
    border-top: 1px solid #e8e8e8;
    padding-top: 1rem;
}
.customs-detail-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.customs-detail-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.82rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.customs-detail-table thead tr {
    background: #1a73e8;
    color: #fff;
}
.customs-detail-table th {
    padding: 8px 10px;
    font-weight: 600;
    text-align: center;
    border: none;
    white-space: nowrap;
}
.customs-detail-table th:nth-child(2),
.customs-detail-table th:nth-child(4),
.customs-detail-table th:nth-child(6) {
    text-align: left;
}
.customs-detail-table td {
    padding: 6px 10px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    color: #333;
}
.customs-detail-table .tc { text-align: center; }
.customs-detail-table .monospace { font-family: monospace; font-size: 0.78rem; }
.customs-row-latest td { background: #e8f0fe; font-weight: 500; }
.customs-detail-table tr:hover td { background: #f8f9ff; }
.customs-row-latest:hover td { background: #d2e3fc; }
.customs-row-notes td,
.customs-row-ref td {
    font-size: 0.78rem;
    color: #666;
    background: #fffbf0;
    border-bottom: 1px solid #f5e8c0;
    padding: 4px 10px 4px 28px;
}
.customs-step { font-weight: 500; white-space: nowrap; }

/* ==================== Customs Progress Bar ==================== */
.cpb-wrap {
    padding: 1.25rem 0.75rem 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #eee;
}
.cpb-track {
    display: flex;
    align-items: flex-start;
    min-width: 480px;
    position: relative;
}
.cpb-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.cpb-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 9px;
    right: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}
.cpb-step.done:not(:first-child)::before { background: #1a73e8; }
.cpb-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #ccc;
    z-index: 1;
    position: relative;
}
.cpb-step.done .cpb-dot { background: #1a73e8; border-color: #1a73e8; }
.cpb-step.curr .cpb-dot {
    background: #fff;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.25);
    width: 22px;
    height: 22px;
}
.cpb-label {
    margin-top: 5px;
    font-size: 0.65rem;
    text-align: center;
    color: #aaa;
    line-height: 1.3;
}
.cpb-step.done .cpb-label { color: #1a73e8; font-weight: 500; }
.cpb-step.curr .cpb-label { color: #1565c0; font-weight: 700; }

/* ==================== Customs Info Sections ==================== */
.cis-section {
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}
.cis-section:last-child { border-bottom: none; }
.cis-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    padding: 0.6rem 1rem 0.4rem;
}
.cis-summary {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    padding: 0.6rem 1rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.cis-summary::-webkit-details-marker { display: none; }
.cis-summary::before { content: '▶ '; font-size: 0.65rem; color: #999; }
details[open] .cis-summary::before { content: '▼ '; color: #1a73e8; }
details[open] .cis-summary { color: #1a73e8; }
.cis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.4rem 1rem;
    padding: 0 1rem 0.75rem;
}
.cis-grid-details { padding-top: 0.25rem; }
.cis-item { display: flex; flex-direction: column; }
.cis-label { font-size: 0.7rem; color: #888; }
.cis-value { font-size: 0.85rem; font-weight: 500; color: #222; word-break: break-all; }
.cis-events .cis-title { padding-bottom: 0.4rem; }
.cis-events .customs-detail-scroll { margin: 0; }

/* ==================== Customs External Links ==================== */
.customs-ext-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}
.btn-ext-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.btn-ext-link:hover { background: #f0f0f0; border-color: #bbb; text-decoration: none; }
.btn-ext-portal { color: #1a73e8; border-color: #c5d8f8; }
.btn-ext-portal:hover { background: #e8f0fe; border-color: #1a73e8; }

/* ==================== Courier Info ==================== */
.courier-info {
    border-top: 3px solid #e3f2fd;
}
.courier-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 0;
    flex-wrap: wrap;
}
.courier-header h3 { margin: 0; font-size: 1rem; }
.delivery-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f0f7ff;
    margin: 0.75rem 1.5rem;
    border-radius: 8px;
    flex-wrap: wrap;
}
.dp-label { color: #666; font-size: 0.85rem; }
.dp-name { font-weight: 600; }
.dp-phone { color: #1976d2; text-decoration: none; font-size: 0.9rem; }
.dp-phone:hover { text-decoration: underline; }

/* ==================== Debug Bar ==================== */
.debug-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1e1e2e;
    color: #cdd6f4;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    z-index: 9999;
    border-top: 2px solid #89b4fa;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.debug-bar-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 8px 14px;
    background: #181825;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #313244;
    flex-shrink: 0;
}
.debug-bar-title  { font-weight: bold; color: #89b4fa; letter-spacing: 0.04em; }
.debug-bar-sep    { color: #45475a; }
.debug-bar-count  { color: #fab387; }
.debug-bar-ms     { color: #a6e3a1; }
.debug-bar-hint   { color: #45475a; font-size: 10px; margin-left: 4px; }
.debug-bar-toggle { margin-left: auto; color: #6c7086; font-size: 11px; }
.debug-bar-body   { overflow: auto; flex: 1; }

.debug-table {
    width: 100%;
    border-collapse: collapse;
}
.debug-table thead th {
    background: #181825;
    color: #89b4fa;
    padding: 4px 10px;
    text-align: left;
    position: sticky; top: 0;
    border-bottom: 1px solid #313244;
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.debug-table td {
    padding: 5px 10px;
    border-bottom: 1px solid #1e1e2e;
    vertical-align: middle;
}
.debug-row { cursor: pointer; transition: background 0.1s; }
.debug-row:hover { background: #2a2a3e; }
.debug-row.debug-ok   { border-left: 3px solid #a6e3a1; }
.debug-row.debug-mock { border-left: 3px solid #f9e2af; }
.debug-row.debug-err  { border-left: 3px solid #f38ba8; }
.debug-row.debug-warn { border-left: 3px solid #fab387; }

.debug-method {
    background: #313244;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    color: #cba6f7;
}
.debug-url {
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #89dceb;
    font-size: 11px;
}
.debug-time { color: #a6adc8; font-size: 11px; }

.debug-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 11px;
    color: #1e1e2e;
    background: #a6e3a1;
}
.debug-badge.mock { background: #f9e2af; }
.debug-badge.err  { background: #f38ba8; }
.debug-badge.warn { background: #fab387; }
.debug-badge.ok   { background: #a6e3a1; }

.debug-detail-row td { background: #11111b; }
.debug-detail { padding: 10px 14px; }
.debug-section { margin-bottom: 10px; }
.debug-section:last-child { margin-bottom: 0; }
.debug-section-title {
    color: #cba6f7;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}
.debug-section pre {
    background: #1e1e2e;
    border: 1px solid #313244;
    padding: 7px 10px;
    border-radius: 5px;
    overflow: auto;
    max-height: 180px;
    color: #a6e3a1;
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 11px;
    margin: 0;
    line-height: 1.5;
}
.debug-section-error .debug-section-title { color: #f38ba8; }
.debug-section-error pre { color: #f38ba8; border-color: #45293a; }

/* debug bar 존재 시 푸터/body 여백 확보 */
body:has(.debug-bar) { padding-bottom: 58px; }

/* 디버그 콘솔 */
.debug-console {
    background: #181825;
    border-bottom: 1px solid #313244;
    padding: 6px 0;
    font-family: monospace;
}
.debug-console-title {
    font-size: 10px;
    color: #6c7086;
    padding: 2px 12px 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.debug-console-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 1px 12px;
    font-size: 12px;
    line-height: 1.5;
}
.debug-console-time  { color: #45475a; font-size: 10px; flex-shrink: 0; }
.debug-console-label { color: #cba6f7; flex-shrink: 0; }
.debug-console-value { color: #cdd6f4; word-break: break-all; }

/* ==================== Timeline ==================== */
.timeline { padding: 1.5rem; }
.timeline h3 { font-size: 1rem; margin-bottom: 1rem; }

.timeline-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}
.timeline-item:last-child::before { display: none; }

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
    margin-top: 2px;
    z-index: 1;
}
.timeline-item.latest .timeline-dot { background: #1a73e8; box-shadow: 0 0 0 4px rgba(26,115,232,0.2); }

.timeline-content { flex: 1; }
.timeline-time { font-size: 0.8rem; color: #999; }
.timeline-status { font-weight: 600; font-size: 0.95rem; margin: 2px 0; }
.timeline-desc { font-size: 0.9rem; color: #555; }
.timeline-location { font-size: 0.85rem; color: #888; margin-top: 2px; }

/* ==================== Favorites ==================== */
.page-section { max-width: 900px; margin: 0 auto; }
.page-header { margin-bottom: 2rem; }
.page-header h1 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.page-desc { color: #666; font-size: 0.95rem; }

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.fav-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.fav-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.fav-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem 0.5rem;
}
.fav-icon { font-size: 1.1rem; }
.fav-nickname { font-weight: 600; flex: 1; }
.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #999;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.15s;
}
.btn-icon:hover { background: #f0f0f0; color: #f44336; }

.fav-body { padding: 0 1rem; }
.fav-number { font-family: monospace; font-size: 0.95rem; color: #333; }
.fav-carrier { font-size: 0.85rem; color: #888; margin-top: 4px; }
.fav-date { font-size: 0.8rem; color: #aaa; margin-top: 4px; }

.fav-footer { padding: 1rem; }

/* ==================== Diary ==================== */
.diary-day {
    margin-bottom: 2rem;
}

.diary-date-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a73e8;
}
.diary-date { font-size: 1.1rem; font-weight: 700; color: #333; }
.diary-count { font-size: 0.8rem; color: #888; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; }

.diary-events { display: flex; flex-direction: column; gap: 0.5rem; }

.diary-event {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.diary-event-time { font-size: 0.85rem; color: #999; min-width: 50px; padding-top: 2px; }
.diary-event-info { flex: 1; }
.diary-event-number { font-weight: 600; font-family: monospace; color: #333; }
.diary-event-number:hover { color: #1a73e8; }
.diary-event-carrier { font-size: 0.8rem; color: #888; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; margin-left: 0.5rem; }
.diary-event-status { font-size: 0.85rem; color: #555; margin-left: 0.5rem; }

/* ==================== Empty States ==================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: #555; margin-bottom: 0.5rem; }
.empty-result { text-align: center; padding: 3rem; color: #888; }

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}
.btn:hover { background: #f5f5f5; text-decoration: none; }

.btn-primary { background: #1a73e8; color: #fff; border-color: #1a73e8; }
.btn-primary:hover { background: #1557b0; }

.btn-outline { background: transparent; }
.btn-outline:hover { background: #f5f5f5; }

.btn-danger { background: #f44336; color: #fff; border-color: #f44336; }
.btn-danger:hover { background: #d32f2f; }

.btn-text { border: none; background: none; color: #1a73e8; padding: 0.3rem 0.5rem; }
.btn-text:hover { background: #f0f0f0; }

.btn-sm { padding: 0.3rem 0.8rem; font-size: 0.8rem; }

/* ==================== Forms ==================== */
.input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.input:focus { border-color: #1a73e8; }

select.input { cursor: pointer; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.9rem; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    max-width: 600px;
}

/* ==================== Footer ==================== */
.footer {
    text-align: center;
    padding: 1.5rem;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    margin-top: auto;
}

/* ==================== Responsive ==================== */
@media (max-width: 640px) {
    .hero-title { font-size: 1.5rem; }
    .search-box { flex-direction: column; border-radius: 12px; }
    .search-select { border-right: none; border-bottom: 1px solid #e0e0e0; min-width: auto; }
    .search-btn { border-radius: 0 0 10px 10px; }
    .nav-container { padding: 0 0.5rem; }
    .result-header { flex-direction: column; align-items: flex-start; }
    .favorites-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr 1fr; }
}
