/**
 * 天气库样式
 * 符合代码规范：<400行
 * 与项目面板保持统一的深色主题风格
 */

.weather-library-content {
    /* 天气库特定样式 */
}

.weather-library-content .library-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
}

.weather-library-content .library-title {
    color: var(--text-primary);
}

.weather-library-content .library-description {
    color: rgba(255, 255, 255, 0.8);
}

.weather-library-content .library-placeholder .placeholder-icon {
    opacity: 0.3;
    filter: brightness(1.2);
}

