/* 컴포넌트 스타일 */

/* 개선된 미팅 카드 스타일 */
.meeting-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.meeting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.meeting-card .card-body {
    padding: 1.5rem;
}

.meeting-card .card-title {
    font-weight: 600;
    color: #2c3e50;
}

.meeting-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    margin: 1rem 0;
}

.meeting-info .d-flex {
    margin-bottom: 0.5rem;
}

.meeting-info .d-flex:last-child {
    margin-bottom: 0;
}

.meeting-date-group h6 {
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* 지역 필터 스타일 */
#regionFilter {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

#regionFilter:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* 새로고침 버튼 애니메이션 */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 빈 상태 스타일 */
.text-center.py-5 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 2rem 0;
}

.text-center.py-5 .display-1 {
    opacity: 0.6;
}

/* 로딩 상태 스타일 */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* 알림 메시지 스타일 */
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* 배지 스타일 개선 */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

/* 탭 스타일 개선 */
.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #007bff;
    background-color: #f8f9fa;
}

.nav-tabs .nav-link.active {
    color: #007bff;
    background-color: white;
    border-bottom: 3px solid #007bff;
}
