
#error_page {
    display: none;
}

.topbar {
  height: 32px;
  background: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex-shrink: 0;
}

.topbar-label {
  font-size: 12px;
  color: #aaa;
}

.main {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.error-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.error-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}