/* 
 * 浏览器升级提示样式
 * 用于不支持现代浏览器特性（如 Proxy）的旧版浏览器
 * 
 * 此文件是 @core 基建代码的一部分
 * 更新时请查看 src/@core/CHANGELOG.md
 */

#browser-upgrade-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  z-index: 99999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #333;
  text-align: center;
  padding: 20px;
}

#browser-upgrade-dialog h1 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #e74c3c;
}

#browser-upgrade-dialog p {
  margin-bottom: 30px;
  line-height: 1.5;
  color: #666;
  font-size: 16px;
}

#browser-upgrade-dialog .browser-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#browser-upgrade-dialog a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s;
}

#browser-upgrade-dialog a:hover {
  background-color: #2980b9;
}

