/* public/assets/playones_override.css */

/* 隐藏 Gitea 默认导航栏和页脚 */
.ui.top.fixed.menu, .footer {
  display: none !important;
}

/* 强制设置登录页背景色 */
body.page-signin, body {
  background-color: #0F111A !important; /* 使用您的暗色背景色 */
  color: #F8FAFC !important; /* 确保文本颜色也为亮色 */
}

/* 覆盖 Gitea 默认的文本和背景颜色 */
body, html {
  background-color: #0F111A !important;
  color: #F8FAFC !important;
}

/* 确保所有容器和卡片背景色一致 */
.ui.segment, .ui.card, .ui.menu, .ui.form {
  background-color: #ffffff00 !important; /* primary color */
  color: #F8FAFC !important;
}

/* 确保输入框背景色一致 */
input, textarea, select {
  background-color: #0F111A !important; /* dark color */
  color: #F8FAFC !important;
  border-color: rgba(14, 246, 204, 0.2) !important;
}

/* 链接颜色 */
a {
  color: #0EF6CC !important; /* accent color */
}
a:hover {
  color: #7B61FF !important; /* accent2 color */
}

/* 按钮颜色 */
.ui.button {
  background-color: #1A1F36 !important;
  color: #F8FAFC !important;
  border: 1px solid rgba(14, 246, 204, 0.2) !important;
}
.ui.button.primary {
  background-color: #0EF6CC !important;
  color: #0F111A !important;
}
.ui.button.primary:hover {
  background-color: #7B61FF !important;
}
/* 增加表单元素间距 */
#repo_template_search.ui.search.selection.dropdown,
.ui.selection.owner.dropdown,
#default_branch {
  margin-top: 1.25rem !important;
  margin-bottom: .55rem !important;
}