/* 일자리소개소 커스텀 CSS */

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 3rem 0;
}

/* 카드 호버 효과 */
.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

/* 리스트 아이템 호버 */
.list-group-item-action:hover {
    background-color: #f8f9fa;
}

/* 뱃지 간격 */
.badge {
    font-weight: 500;
    font-size: 0.75em;
}

/* 테이블 상세 */
.table th {
    white-space: nowrap;
    font-size: 0.9em;
}
.table td {
    font-size: 0.9em;
}

/* 브레드크럼 */
.breadcrumb {
    font-size: 0.85em;
    background: transparent;
    padding: 0;
}

/* 페이지네이션 */
.pagination .page-link {
    color: #333;
    border-color: #dee2e6;
}
.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

/* Leaflet 지도 */
#map, #searchMap, #nearbyMap {
    border-radius: 0 0 0.375rem 0.375rem;
    z-index: 1;
}

/* 네비게이션 */
.navbar-brand {
    font-size: 1.1rem;
}
.nav-link {
    font-size: 0.9rem;
}

/* 필터 카드 */
.card-body .form-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* 푸터 */
footer a:hover {
    color: #fff !important;
}

/* FAQ 아코디언 */
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0c63e4;
}

/* 개인정보처리방침 */
.privacy-content h5 {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
.privacy-content h5:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* 자동완성 */
#autocompleteList {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 반응형 */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    .hero-section h1 {
        font-size: 1.5rem;
    }
    .hero-section .lead {
        font-size: 0.95rem;
    }
    .table th, .table td {
        font-size: 0.8em;
    }
    .navbar-brand {
        font-size: 1rem;
    }
    #map, #searchMap, #nearbyMap {
        height: 250px !important;
    }
}

/* 내 위치 마커 펄스 효과 */
.my-location-icon {
    background: transparent;
    border: none;
}

/* 스크롤 스무스 */
html {
    scroll-behavior: smooth;
}

/* 통계 카드 */
.card.border-0 {
    transition: transform 0.15s ease;
}
.card.border-0:hover {
    transform: scale(1.03);
}
