/* 全局样式 */
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 日历容器 */
.calendar-container {
    min-height: 500px;
}

/* 图表容器 */
.chart-container {
    position: relative;
    height: 300px;
}

/* 患者详情卡片 */
.patient-card {
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 指标卡片 */
.metric-card {
    transition: all 0.3s ease;
}

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

/* 随访记录表格 */
.followup-table {
    width: 100%;
    border-collapse: collapse;
}

.followup-table th, .followup-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .chart-container {
        height: 250px;
    }
}
