/* styles/UserDropdown.module.css */
.UserDropdown_dropdown__mjK7P {
  position: relative;
  display: inline-block;
  font-size: 14px; /* 添加这一行来设置整体字体大小 */
}

.UserDropdown_dropdownTrigger__j0nf2 {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--active-color);
  font-size: 14px; /* 为下拉菜单触发器设置字体大小 */
}

.UserDropdown_dropdownTrigger__j0nf2:hover {
  color: var(--positive-color);
}

.UserDropdown_dropdownContent__NrXfB {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--background-color);
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 1000;
  border: 1px solid var(--passive-color);
  font-size: 12px; /* 为下拉菜单内容设置更小的字体大小 */
}

.UserDropdown_dropdownItem__c6t_V {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--active-color);
  font-size: 12px; /* 为下拉菜单项设置字体大小 */
}

.UserDropdown_dropdownItem__c6t_V:hover {
  background-color: var(--passive-color);
  color: var(--background-color);
}

.UserDropdown_dropdownItem__c6t_V svg {
  color: var(--passive-color);
  font-size: 14px; /* 为图标设置字体大小 */
}

.UserDropdown_dropdownItem__c6t_V:hover svg {
  color: var(--background-color);
}
.Header_nav__F3t74 ul {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.Header_nav__F3t74 ul li {
  padding-left: 1rem;
}

.Header_logo__6vBZG {
  color: var(--strong-color);
  margin-right: 0.5rem;
}


.Header_languageButton__MarJj:hover {
  background: var(--hover-color);
}

.Header_languageButton__MarJj::after {
  font-size: 0.75rem;
}


.Header_languagePicker__WYO16 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  z-index: 10;
}

.Header_languageDropdown__H7HnV {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--sub-color);
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: Header_dropdownFadeIn__fHXm6 0.2s ease;
}



.Header_languageOption__djkdn {
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  color: var(--sub-alt-color);
  cursor: pointer;
  border-radius: 0.25rem;
  text-align: left;
  transition: all 0.2s ease;
}


.Header_languageOption__djkdn:hover {
  background: var(--hover-color);
}

.Header_languageOption__djkdn.Header_active__EB8lX {
  background: var(--main-color);
  color: var(--text-color);
}


.Header_settings__0DsIY {
  display: flex;
  align-items: center; /* 垂直居中对齐 */
  gap: 10px; /* 组件之间的间距 */
}


/* 确保 ThemePicker 和 LanguagePicker 的按钮高度一致 */
.Header_themeButton__Vemnx {  /* 假设你的 ThemePicker 按钮使用这个类名 */
  height: 40px;  /* 设置统一的高度 */
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header_languageButton__MarJj {
  padding: 0.5rem 1rem;
  background: var(--sub-color);
  border: none;
  border-radius: 0.5rem;
  color: var(--text-color);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes Header_dropdownFadeIn__fHXm6 {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* 添加一些响应式样式 */
@media (max-width: 768px) {
  .Header_languageDropdown__H7HnV {
    width: 200px;
  }
  
  .Header_languageButton__MarJj {
    width: 100%;
    justify-content: space-between;
  }
}

.Header_headerBar__n2_C9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  background: var(--background-color, #1e1e2e);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* 确保始终可见 */
  min-height: 72px;
  width: 100%;
  /* 防止被其他元素覆盖 */
  opacity: 1;
  visibility: visible;
}

.Header_headerBar__n2_C9:hover {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.Header_left__9aIGe {
  display: flex;
  align-items: center;
  gap: 20px;
  /* 确保左侧元素可见 */
  opacity: 1;
  visibility: visible;
}

.Header_center__Zh3Nt {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header_right__K2Msm {
  display: flex;
  align-items: center;
  gap: 24px;
}

.Header_logoLink__IIik4 {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.Header_logoLink__IIik4::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.Header_logoLink__IIik4:hover::before {
  left: 100%;
}

.Header_logoLink__IIik4:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Header_logoIcon__u5pMY {
  font-size: 28px;
  color: var(--positive-color, #10b981);
  margin-right: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.Header_logoLink__IIik4:hover .Header_logoIcon__u5pMY {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.Header_logoText__Msq47 {
  font-size: 26px;
  font-weight: 800;
  color: var(--active-color, #ffffff);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--active-color, #ffffff), var(--positive-color, #10b981));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.Header_logoLink__IIik4:hover .Header_logoText__Msq47 {
  background: linear-gradient(135deg, var(--positive-color), var(--active-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.Header_iconLink__lVN05 {
  display: flex;
  align-items: center;
  color: var(--passive-color, #a0a0a0);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.Header_iconLink__lVN05::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.Header_iconLink__lVN05:hover::before {
  width: 100%;
  height: 100%;
}

.Header_iconLink__lVN05:hover {
  color: var(--positive-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Header_icon__BPVd4 {
  font-size: 18px;
  transition: all 0.3s ease;
}

.Header_iconLink__lVN05:hover .Header_icon__BPVd4 {
  transform: scale(1.1);
}

.Header_loginButton__BhBIj {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--positive-color), var(--active-color));
  border: none;
  color: var(--background-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.Header_loginButton__BhBIj::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.Header_loginButton__BhBIj:hover::before {
  left: 100%;
}

.Header_loginButton__BhBIj:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--active-color), var(--positive-color));
}

.Header_loginButton__BhBIj .Header_icon__BPVd4 {
  font-size: 16px;
  margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .Header_headerBar__n2_C9 {
    padding: 0 1.5rem;
    height: 68px;
  }
  
  .Header_left__9aIGe {
    gap: 16px;
  }
  
  .Header_right__K2Msm {
    gap: 20px;
  }
  
  .Header_logoIcon__u5pMY {
    font-size: 24px;
    margin-right: 12px;
  }
  
  .Header_logoText__Msq47 {
    font-size: 22px;
  }
  
  .Header_iconLink__lVN05 {
    padding: 8px;
    font-size: 16px;
  }
  
  .Header_icon__BPVd4 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .Header_headerBar__n2_C9 {
    padding: 0 1rem;
    height: 64px;
  }
  
  .Header_left__9aIGe {
    gap: 12px;
  }
  
  .Header_right__K2Msm {
    gap: 16px;
  }
  
  .Header_logoIcon__u5pMY {
    font-size: 22px;
    margin-right: 10px;
  }
  
  .Header_logoText__Msq47 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .Header_iconLink__lVN05 {
    padding: 6px;
    font-size: 14px;
  }
  
  .Header_icon__BPVd4 {
    font-size: 14px;
  }
  
  .Header_loginButton__BhBIj {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .Header_headerBar__n2_C9 {
    padding: 0 0.75rem;
    height: 60px;
  }
  
  .Header_left__9aIGe {
    gap: 8px;
  }
  
  .Header_right__K2Msm {
    gap: 12px;
  }
  
  .Header_logoIcon__u5pMY {
    font-size: 20px;
    margin-right: 8px;
  }
  
  .Header_logoText__Msq47 {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  
  .Header_iconLink__lVN05 {
    padding: 4px;
    font-size: 12px;
  }
  
  .Header_icon__BPVd4 {
    font-size: 12px;
  }
  
  .Header_loginButton__BhBIj {
    padding: 8px 12px;
    font-size: 12px;
  }
}


.ThemePicker_trigger__RjzXk {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--hover-color);
  border: 1px solid var(--passive-color);
  border-radius: 6px;
  color: var(--active-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.ThemePicker_trigger__RjzXk:hover {
  background: var(--passive-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ThemePicker_triggerContent__9p45i {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.ThemePicker_themeColor__egbbZ {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--passive-color);
  flex-shrink: 0;
}

.ThemePicker_content__4NVst {
  background: var(--background-color);
  border: 1px solid var(--passive-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.ThemePicker_item__gUi7W {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--active-color);
  font-size: 14px;
  font-weight: 500;
  margin: 2px 0;
}

.ThemePicker_item__gUi7W:hover {
  background: var(--hover-color);
  transform: translateX(2px);
}

.ThemePicker_activeItem__ADDH_ {
  background: var(--positive-color);
  color: var(--background-color);
}

.ThemePicker_activeItem__ADDH_:hover {
  background: var(--positive-color);
  color: var(--background-color);
}

.ThemePicker_itemContent__slMwP {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.ThemePicker_themeName__lpXJ1 {
  flex: 1 1;
  text-transform: capitalize;
}

.ThemePicker_checkmark__nOFdt {
  color: var(--background-color);
  font-weight: bold;
  margin-left: auto;
}

.ThemePicker_arrow__Vpt01 {
  fill: var(--background-color);
  stroke: var(--passive-color);
  stroke-width: 1;
}
.Footer_footer__Tl1eP {
  background: var(--background-color);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.Footer_footer__Tl1eP:hover {
  border-top-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.Footer_footerContainer__nH_FT {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.Footer_footerLeft__0LOiI {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.Footer_footerRight__rF0Vq {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Footer_footerLink__hOMry {
  display: inline-flex;
  align-items: center;
  color: var(--passive-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Footer_footerLink__hOMry::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.Footer_footerLink__hOMry:hover::before {
  width: 100%;
  height: 100%;
}

.Footer_footerLink__hOMry:hover {
  color: var(--positive-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.Footer_footerIcon__Ij_gE {
  margin-right: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.Footer_footerLink__hOMry:hover .Footer_footerIcon__Ij_gE {
  transform: scale(1.1);
}

.Footer_footerText__UQsE6 {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.Footer_footerLink__hOMry:hover .Footer_footerText__UQsE6 {
  color: var(--positive-color);
}

.Footer_themeSection__ajJyd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.Footer_themeSection__ajJyd:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.Footer_themeIcon__9Eql5 {
  font-size: 14px;
  color: var(--passive-color);
  transition: all 0.3s ease;
}

.Footer_themeSection__ajJyd:hover .Footer_themeIcon__9Eql5 {
  color: var(--positive-color);
  transform: scale(1.1);
}

.Footer_copyright__0_Me0 {
  text-align: center;
  color: var(--passive-color);
  font-size: 12px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .Footer_footer__Tl1eP {
    padding: 1.25rem 1.5rem;
  }
  
  .Footer_footerContainer__nH_FT {
    gap: 1.5rem;
  }
  
  .Footer_footerLeft__0LOiI {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .Footer_footer__Tl1eP {
    padding: 1rem 1rem;
  }
  
  .Footer_footerContainer__nH_FT {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .Footer_footerLeft__0LOiI {
    gap: 1rem;
    justify-content: center;
  }
  
  .Footer_footerRight__rF0Vq {
    gap: 0.75rem;
  }
  
  .Footer_footerLink__hOMry {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .Footer_footerIcon__Ij_gE {
    font-size: 13px;
    margin-right: 5px;
  }
  
  .Footer_footerText__UQsE6 {
    font-size: 13px;
  }
  
  .Footer_themeSection__ajJyd {
    padding: 6px 10px;
  }
  
  .Footer_themeIcon__9Eql5 {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .Footer_footer__Tl1eP {
    padding: 0.75rem 0.75rem;
  }
  
  .Footer_footerContainer__nH_FT {
    gap: 0.75rem;
  }
  
  .Footer_footerLeft__0LOiI {
    gap: 0.75rem;
  }
  
  .Footer_footerRight__rF0Vq {
    gap: 0.5rem;
  }
  
  .Footer_footerLink__hOMry {
    font-size: 12px;
    padding: 5px 8px;
  }
  
  .Footer_footerIcon__Ij_gE {
    font-size: 12px;
    margin-right: 4px;
  }
  
  .Footer_footerText__UQsE6 {
    font-size: 12px;
  }
  
  .Footer_themeSection__ajJyd {
    padding: 5px 8px;
  }
  
  .Footer_themeIcon__9Eql5 {
    font-size: 12px;
  }
  
  .Footer_copyright__0_Me0 {
    font-size: 11px;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
}

@keyframes Animations_slide-up__H9xDX {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_slide-down__UVjWg {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_slide-right__spVH3 {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_slide-left__TP6Ld {
  from {
    opacity: 0;
    transform: translateX(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_fade-in___KA_I {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Animations_slideUp__92My9 {
  animation-name: Animations_slide-up__H9xDX;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutUp__wueAH {
  animation-name: Animations_slide-up__H9xDX;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_slideDown__qR06b {
  animation-name: Animations_slide-down__UVjWg;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutDown__qrfKs {
  animation-name: Animations_slide-down__UVjWg;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_slideRight__DXgb4 {
  animation-name: Animations_slide-right__spVH3;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutRight__AsdaW {
  animation-name: Animations_slide-right__spVH3;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_slideLeft__KqDnP {
  animation-name: Animations_slide-left__TP6Ld;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutLeft__K_E6K {
  animation-name: Animations_slide-left__TP6Ld;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_fadeIn__pKF8o {
  animation-name: Animations_fade-in___KA_I;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_fadeOut__ykig4 {
  animation-name: Animations_fade-in___KA_I;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}

.Button_button__HxzDS {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  outline: none;
}

.Button_button__HxzDS:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.Button_button__HxzDS:focus {
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

.Button_theme___rfVp {
  font-size: 0.6rem;
  padding: 0 0.5rem;
  min-width: auto;
}

.Button_theme___rfVp:hover {
  color: var(--positive-color);
}

.Button_set__NlqWg {
  color: var(--active-color);
  border-color: var(--active-color);
  border-style: solid;
  border-width: 0.1rem;
  padding: 0.5rem;
  min-width: auto;
  background: transparent;
}

.Button_set__NlqWg:hover {
  color: var(--positive-color);
  border-color: var(--positive-color);
}

.Button_primary__THcya {
  background: var(--accent-color, #4CAF50);
  color: white;
  border: 2px solid var(--accent-color, #4CAF50);
}

.Button_primary__THcya:hover:not(:disabled) {
  background: #45a049;
  border-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.Button_secondary__yn6de {
  background: var(--sub-alt-color, #3a3a3a);
  color: var(--main-color, #ffffff);
  border: 2px solid var(--sub-alt-color, #3a3a3a);
}

.Button_secondary__yn6de:hover:not(:disabled) {
  background: var(--sub-color, #2a2a2a);
  border-color: var(--main-color, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.Button_outline__bAJhc {
  background: transparent;
  color: var(--main-color, #ffffff);
  border: 2px solid var(--main-color, #ffffff);
}

.Button_outline__bAJhc:hover:not(:disabled) {
  background: var(--main-color, #ffffff);
  color: var(--bg-color, #1a1a1a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.Button_success__GWZOM {
  background: #4CAF50;
  color: white;
  border: 2px solid #4CAF50;
}

.Button_success__GWZOM:hover:not(:disabled) {
  background: #45a049;
  border-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .Button_button__HxzDS {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .Button_button__HxzDS {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    min-width: 70px;
  }
}

/* 进度图表组件样式 */

.ProgressCharts_progressCharts__aC8PR {
  background: var(--surface-color, #2d3748);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color, #4a5568);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 标题部分 */
.ProgressCharts_header__bG5tf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color, #4a5568);
}

.ProgressCharts_titleSection__hraWk {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ProgressCharts_titleIcon__RI2PE {
  color: var(--primary-color, #4f46e5);
  font-size: 24px;
}

.ProgressCharts_title__XDjPB {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary, #e2e8f0);
}

.ProgressCharts_exportButton___eGNx {
  padding: 8px 12px;
  background: var(--surface-secondary, #374151);
  border: 1px solid var(--border-color, #4a5568);
  border-radius: 8px;
  color: var(--text-secondary, #a0aec0);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.ProgressCharts_exportButton___eGNx:hover {
  background: var(--primary-color, #4f46e5);
  color: white;
  border-color: var(--primary-color, #4f46e5);
}

/* 统计卡片网格 */
.ProgressCharts_statsGrid__wwkh9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 24px;
}

.ProgressCharts_statCard__ljR7R {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface-secondary, #374151);
  border-radius: 12px;
  border: 1px solid var(--border-color, #4a5568);
  transition: all 0.2s ease;
}

.ProgressCharts_statCard__ljR7R:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ProgressCharts_improvementCard__agpoU {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
}

.ProgressCharts_statIcon__FufLS {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-color, #4f46e5);
  color: white;
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
}

.ProgressCharts_improvementCard__agpoU .ProgressCharts_statIcon__FufLS {
  display: none;
}

.ProgressCharts_statContent__3sCUC {
  flex: 1 1;
  min-width: 0;
}

.ProgressCharts_statValue__4mWed {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary, #e2e8f0);
  line-height: 1.2;
}

.ProgressCharts_improvementCard__agpoU .ProgressCharts_statValue__4mWed {
  color: white;
  font-size: 28px;
}

.ProgressCharts_statValue__4mWed.ProgressCharts_positive__ItPI2 {
  color: #10b981;
}

.ProgressCharts_statValue__4mWed.ProgressCharts_negative__qawle {
  color: #ef4444;
}

.ProgressCharts_statLabel__Dyi1i {
  display: block;
  font-size: 14px;
  color: var(--text-secondary, #a0aec0);
  margin-top: 4px;
}

.ProgressCharts_improvementCard__agpoU .ProgressCharts_statLabel__Dyi1i {
  color: rgba(255, 255, 255, 0.9);
}

/* 控制面板 */
.ProgressCharts_controls__1it4P {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--surface-secondary, #374151);
  border-radius: 12px;
  border: 1px solid var(--border-color, #4a5568);
}

.ProgressCharts_controlGroup__rw5_W {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.ProgressCharts_controlGroup__rw5_W label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary, #a0aec0);
  white-space: nowrap;
}

.ProgressCharts_controlSelect__fIeeD {
  padding: 6px 12px;
  background: var(--surface-color, #2d3748);
  border: 1px solid var(--border-color, #4a5568);
  border-radius: 6px;
  color: var(--text-primary, #e2e8f0);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ProgressCharts_controlSelect__fIeeD:hover,
.ProgressCharts_controlSelect__fIeeD:focus {
  border-color: var(--primary-color, #4f46e5);
  outline: none;
}

.ProgressCharts_chartTypeButtons__iwPjk {
  display: flex;
  gap: 4px;
  background: var(--surface-color, #2d3748);
  border-radius: 6px;
  padding: 2px;
  border: 1px solid var(--border-color, #4a5568);
}

.ProgressCharts_typeButton__5xNM8 {
  padding: 6px 12px;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text-secondary, #a0aec0);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ProgressCharts_typeButton__5xNM8:hover {
  background: var(--surface-secondary, #374151);
  color: var(--text-primary, #e2e8f0);
}

.ProgressCharts_typeButton__5xNM8.ProgressCharts_active__c3xY_ {
  background: var(--primary-color, #4f46e5);
  color: white;
}

/* 图表容器 */
.ProgressCharts_chartContainer__Waueh {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--surface-secondary, #374151);
  border-radius: 12px;
  border: 1px solid var(--border-color, #4a5568);
  overflow: hidden;
}

.ProgressCharts_svgContainer__EiACg {
  width: 100%;
  overflow: hidden;
}

.ProgressCharts_chart__Ol17U {
  width: 100%;
  height: auto;
  display: block;
}

.ProgressCharts_noData__QkmAQ {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary, #a0aec0);
  font-size: 16px;
}

/* 自定义tooltip */
.ProgressCharts_customTooltip__cMqqI {
  background: var(--surface-color, #2d3748);
  border: 1px solid var(--border-color, #4a5568);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ProgressCharts_tooltipLabel__yZbsn {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #e2e8f0);
}

.ProgressCharts_customTooltip__cMqqI p {
  margin: 4px 0;
  font-size: 13px;
  font-weight: 500;
}

/* 图例 */
.ProgressCharts_legend__88JHy {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px;
  background: var(--surface-secondary, #374151);
  border-radius: 8px;
  border: 1px solid var(--border-color, #4a5568);
}

.ProgressCharts_legendItem__kFEen {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary, #e2e8f0);
}

.ProgressCharts_legendColor__IYOze {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

/* 空状态 */
.ProgressCharts_emptyState__LDphv {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary, #a0aec0);
}

.ProgressCharts_emptyIcon__qp4cR {
  font-size: 48px;
  color: var(--border-color, #4a5568);
  margin-bottom: 16px;
}

.ProgressCharts_emptyState__LDphv h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary, #e2e8f0);
}

.ProgressCharts_emptyState__LDphv p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .ProgressCharts_statsGrid__wwkh9 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
  
  .ProgressCharts_statCard__ljR7R {
    padding: 12px;
    gap: 12px;
  }
  
  .ProgressCharts_statIcon__FufLS {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .ProgressCharts_statValue__4mWed {
    font-size: 20px;
  }
  
  .ProgressCharts_improvementCard__agpoU .ProgressCharts_statValue__4mWed {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .ProgressCharts_progressCharts__aC8PR {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .ProgressCharts_header__bG5tf {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .ProgressCharts_title__XDjPB {
    font-size: 20px;
  }
  
  .ProgressCharts_statsGrid__wwkh9 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .ProgressCharts_statCard__ljR7R {
    flex-direction: column;
    text-align: center;
    padding: 12px 8px;
    gap: 8px;
  }
  
  .ProgressCharts_statIcon__FufLS {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .ProgressCharts_statValue__4mWed {
    font-size: 18px;
  }
  
  .ProgressCharts_improvementCard__agpoU .ProgressCharts_statValue__4mWed {
    font-size: 20px;
  }
  
  .ProgressCharts_statLabel__Dyi1i {
    font-size: 12px;
  }
  
  .ProgressCharts_controls__1it4P {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  
  .ProgressCharts_controlGroup__rw5_W {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }
  
  .ProgressCharts_controlSelect__fIeeD {
    width: 100%;
  }
  
  .ProgressCharts_chartTypeButtons__iwPjk {
    width: 100%;
    justify-content: space-between;
  }
  
  .ProgressCharts_typeButton__5xNM8 {
    flex: 1 1;
  }
  
  .ProgressCharts_chartContainer__Waueh {
    padding: 8px;
  }
  
  .ProgressCharts_legend__88JHy {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .ProgressCharts_statsGrid__wwkh9 {
    grid-template-columns: 1fr;
  }
  
  .ProgressCharts_statCard__ljR7R {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }
  
  .ProgressCharts_controls__1it4P {
    padding: 8px;
  }
  
  .ProgressCharts_title__XDjPB {
    font-size: 18px;
  }
  
  .ProgressCharts_emptyState__LDphv {
    padding: 40px 16px;
  }
  
  .ProgressCharts_emptyIcon__qp4cR {
    font-size: 36px;
  }
  
  .ProgressCharts_emptyState__LDphv h3 {
    font-size: 18px;
  }
  
  .ProgressCharts_emptyState__LDphv p {
    font-size: 14px;
  }
}

/* 暗色主题适配 */
@media (prefers-color-scheme: dark) {
  .ProgressCharts_progressCharts__aC8PR {
    background: var(--surface-color, #1a202c);
    border-color: var(--border-color, #2d3748);
  }
  
  .ProgressCharts_statCard__ljR7R,
  .ProgressCharts_controls__1it4P,
  .ProgressCharts_chartContainer__Waueh,
  .ProgressCharts_legend__88JHy {
    background: var(--surface-secondary, #2d3748);
    border-color: var(--border-color, #4a5568);
  }
  
  .ProgressCharts_controlSelect__fIeeD {
    background: var(--surface-color, #1a202c);
  }
  
  .ProgressCharts_customTooltip__cMqqI {
    background: var(--surface-color, #1a202c);
  }
}

/* 动画效果 */
@keyframes ProgressCharts_fadeInUp__1wjmB {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ProgressCharts_progressCharts__aC8PR {
  animation: ProgressCharts_fadeInUp__1wjmB 0.5s ease-out;
}

.ProgressCharts_statCard__ljR7R {
  animation: ProgressCharts_fadeInUp__1wjmB 0.5s ease-out;
}

.ProgressCharts_statCard__ljR7R:nth-child(1) { animation-delay: 0.1s; }
.ProgressCharts_statCard__ljR7R:nth-child(2) { animation-delay: 0.2s; }
.ProgressCharts_statCard__ljR7R:nth-child(3) { animation-delay: 0.3s; }
.ProgressCharts_statCard__ljR7R:nth-child(4) { animation-delay: 0.4s; }
.ProgressCharts_statCard__ljR7R:nth-child(5) { animation-delay: 0.5s; }

/* 页面容器 */
.MyResultsPage_container__sDJ50 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
}

.MyResultsPage_main__43U9l {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* 页面头部 */
.MyResultsPage_header__2dGyd {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.MyResultsPage_title__oysjc {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.MyResultsPage_subtitle__MDdvy {
  font-size: 1.3rem;
  color: var(--main-color, #ffffff);
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 400;
}

/* 内容区域 */
.MyResultsPage_content__SyrL8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

/* 统计卡片区域 */
.MyResultsPage_statsSection__ewl0U {
  width: 100%;
  margin-bottom: 1rem;
}

.MyResultsPage_statsGrid__hKmpq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  width: 100%;
}

.MyResultsPage_statCard__CeosV {
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.MyResultsPage_statCard__CeosV::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.MyResultsPage_statCard__CeosV:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color, #4CAF50);
}

.MyResultsPage_statCard__CeosV:hover::before {
  transform: scaleX(1);
}

.MyResultsPage_statIcon__KzAFq {
  font-size: 2rem;
  color: var(--accent-color, #4CAF50);
  margin-bottom: 1rem;
  display: block;
}

.MyResultsPage_statContent__bWcgb h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: var(--main-color, #ffffff);
}

.MyResultsPage_statContent__bWcgb span {
  font-size: 1rem;
  color: var(--main-color, #ffffff);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  font-weight: 500;
}

/* 控制面板区域 */
.MyResultsPage_controlsSection__6rD2E {
  width: 100%;
  margin-bottom: 1rem;
}

.MyResultsPage_controlsGrid__X02dv {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: center;
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.MyResultsPage_filterGroup__W5BPo {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.MyResultsPage_filterSelect__gaDKP {
  position: relative;
}

.MyResultsPage_filterSelect__gaDKP select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.MyResultsPage_filterSelect__gaDKP select:focus {
  outline: none;
  border-color: var(--accent-color, #4CAF50);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.MyResultsPage_sortGroup__pfCLs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.MyResultsPage_sortSelect__6_jBs {
  padding: 0.75rem 1rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.MyResultsPage_sortSelect__6_jBs:focus {
  outline: none;
  border-color: var(--accent-color, #4CAF50);
}

.MyResultsPage_sortButton__7N78y {
  padding: 0.75rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: bold;
  min-width: 50px;
}

.MyResultsPage_sortButton__7N78y:hover {
  border-color: var(--accent-color, #4CAF50);
  background: rgba(76, 175, 80, 0.1);
}

.MyResultsPage_actionGroup__Nh3xB {
  display: flex;
  gap: 0.75rem;
}

/* 成绩列表区域 */
.MyResultsPage_resultsSection__2GM6c {
  width: 100%;
  margin-bottom: 2rem;
}

.MyResultsPage_tableContainer__duYhl {
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.MyResultsPage_resultsTable__QGFti {
  width: 100%;
  border-collapse: collapse;
  background: var(--sub-color, #2a2a2a);
}

.MyResultsPage_resultsTable__QGFti th {
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--sub-alt-color, #3a3a3a);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.MyResultsPage_resultsTable__QGFti td {
  padding: 1rem;
  border-bottom: 1px solid var(--sub-alt-color, #3a3a3a);
  font-size: 1rem;
  vertical-align: middle;
}

.MyResultsPage_resultsTable__QGFti tbody tr {
  transition: all 0.3s ease;
}

.MyResultsPage_resultsTable__QGFti tbody tr:hover {
  background: rgba(76, 175, 80, 0.05);
  transform: scale(1.01);
}

/* 表格单元格样式 */
.MyResultsPage_dateCell__BNfXT {
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}

.MyResultsPage_modeCell__olu2b {
  color: var(--main-color, #ffffff);
  font-weight: 500;
}

.MyResultsPage_languageCell__CylEn {
  color: var(--main-color, #ffffff);
  text-transform: capitalize;
}

.MyResultsPage_wpmCell___x2jc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.MyResultsPage_wpmValue__IxiN2 {
  font-size: 1.2rem;
  font-weight: bold;
}

.MyResultsPage_performanceLevel__ylUxv {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.MyResultsPage_accuracyCell__ByKEi {
  text-align: center;
}

.MyResultsPage_accuracyValue__BCtaA {
  font-weight: 600;
  color: var(--main-color, #ffffff);
}

.MyResultsPage_durationCell__vmDgJ {
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  opacity: 0.8;
}

.MyResultsPage_actionCell__cuWOm {
  text-align: center;
}

.MyResultsPage_deleteButton__9ulhy {
  padding: 0.5rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 8px;
  background: var(--bg-color, #1a1a1a);
  color: #f44336;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}

.MyResultsPage_deleteButton__9ulhy:hover:not(:disabled) {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
  transform: scale(1.05);
}

.MyResultsPage_deleteButton__9ulhy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 加载状态 */
.MyResultsPage_loading__j_rmN {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--main-color, #ffffff);
  opacity: 0.8;
}

.MyResultsPage_spinner__IZAfW {
  width: 40px;
  height: 40px;
  border: 4px solid var(--sub-alt-color, #3a3a3a);
  border-top: 4px solid var(--accent-color, #4CAF50);
  border-radius: 50%;
  animation: MyResultsPage_spin__jbtA8 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes MyResultsPage_spin__jbtA8 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 错误状态 */
.MyResultsPage_error__KjVlU {
  text-align: center;
  padding: 4rem 2rem;
  color: #f44336;
}

.MyResultsPage_error__KjVlU p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* 空状态 */
.MyResultsPage_emptyState__lA_6e {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--main-color, #ffffff);
  opacity: 0.8;
}

.MyResultsPage_emptyIcon___9YyT {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.MyResultsPage_emptyState__lA_6e h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--main-color, #ffffff);
}

.MyResultsPage_emptyState__lA_6e p {
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
}

/* 分页区域 */
.MyResultsPage_paginationSection__nLa55 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.MyResultsPage_pagination__Jwygt {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--sub-color, #2a2a2a);
  border-radius: 10px;
  padding: 1rem 2rem;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
}

.MyResultsPage_pageButton__S3cU2 {
  padding: 0.5rem 1rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 8px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.MyResultsPage_pageButton__S3cU2:hover:not(:disabled) {
  border-color: var(--accent-color, #4CAF50);
  background: rgba(76, 175, 80, 0.1);
}

.MyResultsPage_pageButton__S3cU2:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.MyResultsPage_pageInfo__JxkCZ {
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .MyResultsPage_statsGrid__hKmpq {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .MyResultsPage_controlsGrid__X02dv {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .MyResultsPage_filterGroup__W5BPo {
    justify-content: center;
  }
  
  .MyResultsPage_sortGroup__pfCLs {
    justify-content: center;
  }
  
  .MyResultsPage_actionGroup__Nh3xB {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .MyResultsPage_main__43U9l {
    padding: 1rem 0.5rem;
  }
  
  .MyResultsPage_header__2dGyd {
    margin-bottom: 2rem;
  }
  
  .MyResultsPage_title__oysjc {
    font-size: 2rem;
  }
  
  .MyResultsPage_subtitle__MDdvy {
    font-size: 1.1rem;
  }
  
  .MyResultsPage_statsGrid__hKmpq {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .MyResultsPage_statCard__CeosV {
    padding: 1rem;
  }
  
  .MyResultsPage_statContent__bWcgb h3 {
    font-size: 1.5rem;
  }
  
  .MyResultsPage_controlsGrid__X02dv {
    padding: 1rem;
  }
  
  .MyResultsPage_filterGroup__W5BPo {
    flex-direction: column;
    align-items: stretch;
  }
  
  .MyResultsPage_filterSelect__gaDKP select {
    width: 100%;
  }
  
  .MyResultsPage_resultsTable__QGFti th,
  .MyResultsPage_resultsTable__QGFti td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .MyResultsPage_wpmValue__IxiN2 {
    font-size: 1rem;
  }
  
  .MyResultsPage_performanceLevel__ylUxv {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .MyResultsPage_main__43U9l {
    padding: 0.5rem;
  }
  
  .MyResultsPage_title__oysjc {
    font-size: 1.8rem;
  }
  
  .MyResultsPage_subtitle__MDdvy {
    font-size: 1rem;
  }
  
  .MyResultsPage_statsGrid__hKmpq {
    grid-template-columns: 1fr;
  }
  
  .MyResultsPage_statCard__CeosV {
    padding: 1rem;
  }
  
  .MyResultsPage_statIcon__KzAFq {
    font-size: 1.5rem;
  }
  
  .MyResultsPage_statContent__bWcgb h3 {
    font-size: 1.3rem;
  }
  
  .MyResultsPage_controlsGrid__X02dv {
    padding: 1rem;
  }
  
  .MyResultsPage_sortGroup__pfCLs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .MyResultsPage_sortSelect__6_jBs {
    width: 100%;
  }
  
  .MyResultsPage_resultsTable__QGFti {
    font-size: 0.8rem;
  }
  
  .MyResultsPage_resultsTable__QGFti th,
  .MyResultsPage_resultsTable__QGFti td {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
  }
  
  .MyResultsPage_pagination__Jwygt {
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* 标签页样式 */
.MyResultsPage_tabsSection__TXRyx {
  width: 100%;
  margin-bottom: 2rem;
}

.MyResultsPage_tabsNav__9km9n {
  display: flex;
  background: var(--sub-color, #2c2e31);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid var(--sub-alt-color, #3c4043);
}

.MyResultsPage_tabButton__4_2Fs {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--sub-alt-color, #646669);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.MyResultsPage_tabButton__4_2Fs:hover {
  background: var(--sub-alt-color, #3c4043);
  color: var(--text-color, #d1d0c5);
}

.MyResultsPage_tabButton__4_2Fs.MyResultsPage_active__6yxhK {
  background: var(--main-color, #e2b714);
  color: var(--bg-color, #323437);
  font-weight: 600;
}

.MyResultsPage_tabButton__4_2Fs svg {
  font-size: 16px;
}

/* 图表区域 */
.MyResultsPage_chartsSection__cqSa_ {
  width: 100%;
  margin-bottom: 2rem;
}

/* 响应式标签页 */
@media (max-width: 768px) {
  .MyResultsPage_tabsNav__9km9n {
    max-width: 100%;
  }
  
  .MyResultsPage_tabButton__4_2Fs {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .MyResultsPage_tabButton__4_2Fs svg {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .MyResultsPage_tabsNav__9km9n {
    flex-direction: column;
    gap: 2px;
  }
  
  .MyResultsPage_tabButton__4_2Fs {
    padding: 12px 16px;
    justify-content: flex-start;
  }
} 
