/* 微信公众号监测页面样式 */

.article-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-header {
    display: flex;
    justify-content-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.article-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.article-summary {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}


.notification-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-link {
    color: #0d6efd;
    text-decoration: none;
}

.article-link:hover {
    text-decoration: underline;
}

/* 统计卡片样式 */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* 筛选按钮样式 */
.btn-check:checked + .btn-outline-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-check:checked + .btn-outline-success {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.btn-check:checked + .btn-outline-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

/* 模态框样式 */
.modal-xl {
    max-width: 90%;
}

.article-detail-content {
    max-height: 60vh;
    overflow-y: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-actions {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .modal-xl {
        max-width: 95%;
    }
}

/* 加载状态 */
.loading-state {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state .description {
    font-size: 0.875rem;
}

