/* 기본 레이아웃 및 가독성 설정 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* 네비게이션바 */
.navbar {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000 !important;
}

/* 히어로 섹션 (메인 전용) */
.hero-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fbfbfb;
}

/* 메인 카테고리 카드 */
.main-card {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.2s ease;
    cursor: pointer;
    height: 100%;
}
.main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
}

/* 낚시터 리스트/상세 공통 스타일 */
.spot-card { border: 1px solid #eee; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.info-table th { width: 30%; background-color: #fbfbfb; color: #666; padding: 12px; border-bottom: 1px solid #eee; }
.info-table td { padding: 12px; border-bottom: 1px solid #eee; }
#map { width: 100%; height: 350px; border-radius: 12px; border: 1px solid #eee; }

body { font-family: 'Noto Sans KR', sans-serif; background-color: #fff; color: #000; }
        .spot-card { border: 1px solid #eee; border-radius: 10px; padding: 20px; margin-bottom: 20px; height: 100%; }
        .badge-type { background-color: #f1f1f1; color: #333; padding: 3px 8px; border-radius: 4px; font-size: 0.75rem; margin-bottom: 10px; display: inline-block; }
        .search-box { background: #fbfbfb; border: 1px solid #eee; border-radius: 12px; padding: 20px; margin-bottom: 30px; }
        .pagination .page-link { color: #000; border: none; margin: 0 3px; border-radius: 5px; }
        .pagination .page-item.active .page-link { background-color: #000; color: #fff; }
        .info-label { color: #888; font-size: 0.85rem; width: 70px; display: inline-block; }
        

/* 푸터 */
.footer {
    padding: 40px 0;
    background-color: #f8f9fa;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #666;
}

.info-table td {
    word-break: keep-all; /* 단어 단위로 줄바꿈되어 읽기 편하게 함 */
    line-height: 1.5;
}

