/**
 * 华风爱科天气预警插件样式
 */
.weathercn-warning-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.warning-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.warning-item {
    padding: 12px 15px;
    background: white;
    border-left: 4px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 预警级别颜色 */
.warning-item.warning-level-red {
    border-left-color: #d63638;
    background: #fff0f0;
}

.warning-item.warning-level-orange {
    border-left-color: #faa754;
    background: #fff4e5;
}

.warning-item.warning-level-yellow {
    border-left-color: #f5d742;
    background: #fffde7;
}

.warning-item.warning-level-blue {
    border-left-color: #2271b1;
    background: #f0f6fc;
}

.warning-item-title {
    font-size: 16px;
    margin-right: 8px;
}

.warning-level {
    font-size: 14px;
    font-weight: 500;
}

.warning-description {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.warning-time {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

.warning-empty {
    padding: 20px;
    text-align: center;
    color: #666;
    background: #f5f5f5;
    border-radius: 4px;
}