/* styles.css */
body {
    --bgColor: #fff;
    --fontColor: #424242;
    background: var(--bgColor);
    color: var(--fontColor);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    --bgColor: #121212;
    --fontColor: #ffffff;
}


.logo-container {
    margin-bottom: 20px;
    /* 添加一個底部間距 */
}

.logo {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 300px;
    content: url('hchs.png');
    /* 正常模式下使用 hchs.png 圖片 */
}

.dark-mode .logo  {
    content: url('hchsdark.png');
    /* 在暗黑模式下使用 hchsdark.png 圖片 */
}

@media (prefers-color-scheme: dark) {
	body {
		--content: url('hchsdark.png');
	}
}



.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-input {
    padding: 15px;
    border: 1px solid var(--search-input-border-color, #ccc);
    /* 使用變數定義正常模式下的邊框顏色 */
    border-radius: 30px;
    outline: none;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--search-input-bg-color, #fff);
    /* 使用變數定義正常模式下的背景顏色 */
}


.dark-mode .search-input {
    --search-input-bg-color: #373737;
    --search-input-border-color: transparent;
    /* 在暗黑模式下，將背景顏色設置為 #373737，邊框顏色設置為透明 */
}



.search-button {
    right: -25px;
    top: 5px;
    background: linear-gradient(to right, #00a2ff, #00e1ff);
    border: 2px solid #00c3ff;
    border-radius: 30px;
    padding: 10px;
    cursor: pointer;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
input:not([type]):focus:not([readonly]),input[type=text]:not(.browser-default):focus:not([readonly]),input[type=password]:not(.browser-default):focus:not([readonly]),input[type=email]:not(.browser-default):focus:not([readonly]),input[type=url]:not(.browser-default):focus:not([readonly]),input[type=time]:not(.browser-default):focus:not([readonly]),input[type=date]:not(.browser-default):focus:not([readonly]),input[type=datetime]:not(.browser-default):focus:not([readonly]),input[type=datetime-local]:not(.browser-default):focus:not([readonly]),input[type=tel]:not(.browser-default):focus:not([readonly]),input[type=number]:not(.browser-default):focus:not([readonly]),input[type=search]:not(.browser-default):focus:not([readonly]),textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #00c3ff;
    -webkit-box-shadow: 0 1px 0 0 #00c3ff;
    box-shadow: 0 1px 0 0 #00c3ff;
}
.search-button:hover {
    transform: scale(1.1);
}

.search-button:active {
    transform: scale(0.9);
}

.search-button img {
    width: 50px;
    height: 20px;
}

.color-squares {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-top: 15px;
}

.color-square {
    flex: 1;
    height: 85px;
    background-color: var(--square-bg-color, #e2e2e2);
    /* 使用變數定義正常模式下的背景顏色 */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 7.5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

.dark-mode .color-square {
    --square-bg-color: #373737;
    /* 在暗黑模式下，將背景顏色設置為 #373737 */
}
/* 在暗黑模式下修改导航抽屉的颜色 */
.dark-mode .drawer {
    background-color: #373737; /* 修改抽屉的背景颜色 */
    color: #bdbdbd; /* 修改抽屉中的文本颜色 */
}

.dark-mode .drawer a {
    color: #bdbdbd; /* 修改导航链接的文本颜色 */
}

.dark-theme {
    background-color: #222;
    color: #fff;
}
.dark-mode .footer {
    color: #fff;
}

.dark-mode .footer a {
    color: #ff0;
}
@media (prefers-color-scheme: dark) {
    body {
        --square-bg-color: #373737;
        --fontColor: #bdbdbd;
        --bgColor: #121212;
        --fontColor: #ffffff;
        --search-input-bg-color: #373737;
        --search-input-border-color: transparent;
        background: var(--bgColor);
        color: var(--fontColor);
    }

    .logo {
        content: url('hchsdark.png');
    }
}
/* 在暗黑模式下修改导航抽屉的颜色 */
.dark-mode .drawer {
    background-color: #373737; /* 修改抽屉的背景颜色 */
    color: #bdbdbd; /* 修改抽屉中的文本颜色 */
}

.dark-mode .drawer a {
    color: #bdbdbd; /* 修改导航链接的文本颜色 */
}

.dark-theme {
    background-color: #222;
    color: #fff;
}
.dark-mode .h1 {
    color: #ffffff;
}    
.status-text {
    margin-bottom: 5px;
}

.api-text {
    text-align: center;
}

.menu-toggle {
    position: absolute;
    top: 10px;
    left: -40px;
    cursor: pointer;
    z-index: 1100;
}

.menu-icon {
    width: 50px;
    height: 50px;
}

.menu-btn {
    background-color: transparent;
    border: unset;
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 1100;
}

.menu-btn:hover {
    background-color: transparent;
}

.menu-btn .bar {
    background-color: #acacac;
    border-radius: 100px;
    height: 4px;
    position: absolute;
    transform: translateX(-50%);
    width: 30px;
}
/* 顯示在手機上的漢堡選單按鈕 */

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
}



/* 确保导航栏固定在页面顶部 */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* 确保导航栏在其他内容上方 */
  background-color: #ffffff; /* 设置背景颜色为白色 */
  box-shadow: none; /* 移除阴影 */
  height: 56px; /* 设置导航栏的高度 */
  display: flex; /* 使用 Flexbox 对齐内容 */
  align-items: center; /* 垂直居中对齐 */
}

/* 自定义菜单图标按钮 */
.sidenav-trigger {
  z-index: 1001; /* 确保菜单按钮在导航栏上方 */
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 2.5;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
/* 默认样式（适用于桌面端） */
#theme-options {
  /* 桌面端的默认样式 */
}
/* 默认样式（适用于桌面端） */
.search-container {
  /* 桌面端的默认样式 */
}

/* 针对手机端的样式 */
@media (max-width: 600px) {
  .search-container {
    width: calc(100% - 8px); /* 设置宽度为屏幕宽度减去两侧的边距 */
    margin: 0 4px; /* 设置左右边距 */
    box-sizing: border-box; /* 确保边距和填充在宽度计算中 */
  }

  .search-input {
    width: calc(100% - 50px); /* 输入框宽度，留出按钮空间 */
    box-sizing: border-box; /* 确保边距和填充在宽度计算中 */
  }

  .search-button {
    right: 10px;
    height: auto; /* 高度自动调整 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* 针对手机端的样式 */
@media (max-width: 900px) {
  #theme-options {
    width: 90%; /* 手机端的宽度 */
    overflow: hidden; /* 防止内容溢出 */
  }

  .theme-option {
    font-size: 14px; /* 手机端的字体大小（可选） */
  }
}
/* 手机端样式 */
@media (max-width: 600px) {
    .logo-option img {
       width: 200px;
    }

}
/* 手机端样式 */
@media (max-width: 99999px) {
    .logo-option img {
       width: 300px;
    }

}
/* 默认样式（适用于桌面端） */
/*#theme-toggle, .automatic-toggle {*/
  /*top: -4px; /* 桌面端的 top 值 */
/*}*/

/* 针对手机端的样式 */
@media (max-width: 600px) {
  #theme-toggle, .automatic-toggle {
    top: 15px; /* 手机端的 top 值 */
  }
}


/* 网页图标按钮 */
.web-icon {
  position: absolute;
  left: 23px; /* 设置图标按钮距离左边的距离 */
  top: 3px; /* 调整图标按钮距离顶部的距离 */
}

.web-icon img {
  height: 50px; /* 设置图标的高度为 50px */
  width: auto; /* 保持图标的宽高比 */
}

/* 导航栏的链接容器 */
.nav-wrapper ul {
  display: flex; /* 使用 Flexbox 布局 */
}

/* 导航栏的链接样式 */
nav .nav-wrapper a {
  color: #000000; /* 设置链接颜色为黑色 */
  margin-left: 20px; /* 给每个链接添加间距 */
}

/* 手机视图中的菜单 */
#mobile-nav {
  z-index: 1002; /* 确保菜单在其他内容上方 */
  top: 56px; /* 调整为导航栏的高度 */
}
/* 按钮样式 */
.menu-toggle {
    position: absolute;
    top: 8px; /* 根据需要调整 */
    font-size: 24px; /* 图标大小 */
    cursor: pointer;
    z-index: 1001; /* 确保在菜单上方 */
}

/* 菜单样式 */
.menu-options {
    display: none; /* 默认隐藏 */
    position: absolute;
    top: 56px; /* 导航栏下方 */
    right: 370px; /* 菜单距离右侧的距离 */
    background-color: #ffffff; /* 背景颜色 */
    border: 1px solid #ddd; /* 边框 */
    border-radius: 20px; /* 圆角边框 */
    padding: 16px; /* 内边距 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* 窗口阴影 */
    z-index: 1000; /* 确保在其他内容上方 */
    max-width: calc(100% - 16px); /* 确保不超出屏幕 */
    box-sizing: border-box; /* 包含内边距和边框 */
}

.menu-option {
    display: flex;
    align-items: center;
    margin-bottom: 16px; /* 每个选项之间的间距 */
    padding: 8px; /* 内边距 */
    border-radius: 20px; /* 圆角边框 */
    cursor: pointer; /* 添加指针光标 */
    transition: background-color 0.3s; /* 平滑过渡效果 */
}

.menu-option:hover {
    background-color: #f0f0f0; /* 鼠标悬停时的背景色 */
    box-shadow: none; /* 取消选项悬停时的阴影 */
}

.icon-container {
    width: 40px; /* 圆形图标的直径 */
    height: 40px;
    border-radius: 50%; /* 圆形 */
    background-color: #f0f0f0; /* 灰白色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px; /* 图标与文字之间的间距 */
}

.icon-container img {
    width: 24px; /* 图标大小 */
    height: 24px;
}

.text-container {
    display: flex;
    flex-direction: column;
}

.text-container a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.subtitle {
    font-size: 14px; /* 副标题字体大小 */
    color: #777; /* 副标题颜色 */
    margin-top: 4px; /* 副标题与主标题之间的间距 */
}

/* 手机端样式 */
@media (max-width: 768px) {
    .menu-toggle {
        left: 0px;
        top: 8px; /* 根据需要调整顶部距离 */
    }

}


/* 手机端样式 */
@media (max-width: 1030px) {
    .menu-options {
        right: 170px; /* 保证菜单不会超出屏幕右侧 */
        max-width: calc(100% - 16px); /* 确保菜单宽度适应屏幕 */
        padding: 8px; /* 调整内边距以适应小屏幕 */
    }
}

/* 手机端样式 */
@media (max-width: 598px) {
    .menu-options {
        right: 1px; /* 保证菜单不会超出屏幕右侧 */
        max-width: calc(100% - 16px); /* 确保菜单宽度适应屏幕 */
        padding: 8px; /* 调整内边距以适应小屏幕 */
    }
}


/* 搜尋框容器樣式 */
.search-container {
    display: flex;
    align-items: center;
    gap: 4px; /* 搜尋框左右的間距 */
}

/* 右上角主题按钮 */
.theme-toggle {
  position: absolute;
  top: -4px; /* 将顶部位置改为 -4px */
  right: 16px;
  font-size: 24px; /* 图标大小 */
  cursor: pointer;
}

/* 自动切换按钮的样式 */
.automatic-toggle {
  position: absolute;
  top: -4px; /* 将顶部位置改为 -4px */
  right: 50px; /* 假设这个按钮在右边偏左的位置 */
  font-size: 24px;
  cursor: pointer;
}


/* 主题选项窗口样式 */
.theme-options {
  display: none; /* 默认隐藏 */
  position: absolute;
  top: 56px; /* 导航栏下方 */
  right: 16px; /* 距离右侧 */
  background-color: #ffffff; /* 背景颜色 */
  border: 1px solid #ddd; /* 边框 */
  border-radius: 20px; /* 圆角边框 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* 阴影 */
  padding: 16px; /* 内边距 */
  z-index: 1000; /* 确保在其他内容上方 */
}

.theme-option {
  margin-bottom: 16px; /* 每个选项之间的间距 */
}

.theme-option label {
  display: block;
  margin-bottom: 8px;
}

.theme-option input[type="file"] {
  display: block;
}

.menu-btn .bar-one {
    -webkit-animation: line-one-rev 0.7s forwards;
    animation: line-one-rev 0.7s forwards;
}

.menu-btn .bar-two {
    -webkit-animation: line-two-rev 0.7s forwards;
    animation: line-two-rev 0.7s forwards;
    top: 50%;
    transition: all 0.2s linear;
    transform: translate(-50%, -50%);
}

.menu-btn .bar-three {
    -webkit-animation: line-three-rev 0.7s forwards;
    animation: line-three-rev 0.7s forwards;
}

.animate .bar-one {
    -webkit-animation: line-one 0.7s forwards;
    animation: line-one 0.7s forwards;
}

.animate .bar-two {
    -webkit-animation: line-two 0.2s forwards;
    animation: line-two 0.2s forwards;
}

.animate .bar-three {
    -webkit-animation: line-three 0.7s forwards;
    animation: line-three 0.7s forwards;
}

@-webkit-keyframes line-one {
    0% {
        top: 0px;
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

@keyframes line-one {
    0% {
        top: 0px;
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

@-webkit-keyframes line-two {
    to {
        width: 0;
    }
}

@keyframes line-two {
    to {
        width: 0;
    }
}

@-webkit-keyframes line-three {
    0% {
        top: 26px;
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(135deg);
    }
}

@keyframes line-three {
    0% {
        top: 26px;
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(135deg);
    }
}

@-webkit-keyframes line-one-rev {
    0% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
           top: 0px;
    }
}

@keyframes line-one-rev {
    0% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 0px;
    }
}

@-webkit-keyframes line-two-rev {
    0%, 50% {
        width: 0;
    }
    100% {
        width: 30px;
    }
}

@keyframes line-two-rev {
    0%, 50% {
        width: 0;
    }
    100% {
        width: 30px;
    }
}

@-webkit-keyframes line-three-rev {
    0% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(135deg);
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 26px;
    }
}

@keyframes line-three-rev {
    0% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(135deg);
    }
    50% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 26px;
    }
}

.drawer {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
}

.drawer-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 900;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.option {
    margin: 15px 0;
}

.option a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
}

.option a:hover {
    text-decoration: underline;
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    margin: 0 13px;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0;
}

.social-container {
    padding: 10px;
    text-align: left;
}



.option:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .search-container {
        width: 100%;
        margin: 0 4px; /* 设置左右边距 */
        padding: 0 10px;
    }
}

.menu-open+.backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.show {
    display: block;
}

.center {
    text-align: center;
}

.small-font {
    font-size: 12px;
}

.disclaimer {
    margin-top: 60px;
}

.container {
    border-radius: 10px;
    margin-top: 20px;
}

.container-bot {
    width: 800px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 20px;
}
/* 基本樣式調整 */
.container {
    width: 100%;
    padding: 20px;
}

.rule-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow-x: auto;
    overflow-y: visible;
    height: auto;
}

/* 文本調整 */
.rule-container h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.rule-container p,
.rule-container ol,
.rule-container ul {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* 自動適配 */
@media screen and (max-width: 768px) {
    .rule-container h2 {
        font-size: 1.25rem;
    }
    .rule-container p,
    .rule-container ol,
    .rule-container ul {
        font-size: 0.875rem;
    }
}

/* 按鈕樣式 */
.button-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.navbar-buttons {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.navbar-buttons a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
}

.navbar-buttons a.btn-danger {
    background-color: #dc3545;
}

/* 手機適配按鈕 */
@media screen and (max-width: 768px) {
    .navbar-buttons a {
        font-size: 0.875rem;
    }
}

h1 {
    text-align: center;
}

p {
    line-height: 1.5;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #00c3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn-container {
    text-align: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.rulebugbutton {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(to right, #ffffff, #ffffff);
    border: 0px solid #008efe;
    border-radius: 0px;
    padding: 0px;
    cursor: pointer;
    color: white;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}

.button-container img {
    width: 300px;
    height: auto;
}

.footer {
    text-align: center;
    margin-top: 20px;
}

.footer p {
    font-size: 40px;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

.download-button {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.bottom-text {
    font-size: 32px;
    text-align: center;
    margin-top: 20px;
    color: white;
}

textarea {
    white-space: nowrap;
    overflow-x: auto;
}

.post {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.comment {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comment .username {
    font-weight: bold;
}

.comment .timestamp {
    font-size: 12px;
    color: #666;
}

.comment .content {
    margin-top: 5px;
}

.comment-form {
    margin-top: 20px;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comment-form button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}







/* styles.css */
.theme-toggle {
  --theme-toggle__classic--duration: 500ms;
}

.theme-toggle__classic path {
  transition-timing-function: cubic-bezier(0, 0, .15, 1.25);
  transform-origin: center;
  transition-duration: calc(var(--theme-toggle__classic--duration) * .8);
}

.theme-toggle__classic g path {
  transition-property: opacity, transform;
  transition-delay: calc(var(--theme-toggle__classic--duration) * .2);
}

.theme-toggle__classic :first-child path {
  transition-property: transform, d;
}

.theme-toggle--toggled .theme-toggle__classic g path {
  transform: scale(.5) rotate(45deg);
  opacity: 0;
  transition-delay: 0s;
}

.theme-toggle--toggled .theme-toggle__classic :first-child path {
  d: path("M-12 5h30a1 1 0 0 0 9 13v24h-39Z");
  transition-delay: calc(var(--theme-toggle__classic--duration) * .2);
}

@supports not (d:path("")) {
  .theme-toggle--toggled .theme-toggle__classic :first-child path {
    transform: translate3d(-12px, 10px, 0);
  }
}

.theme-toggle svg {
  position: absolute;
  top: 15px;
  right: -25px;
  transition: transform 0.5s ease;
}

.drawer {
  transition: transform 0.3s ease;
}

.drawer.open {
  transform: translateX(0);
}

.overlay {
  transition: opacity 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}
.theme-toggle .theme-toggle__classic circle,
.theme-toggle .theme-toggle__classic path {
    --tw-text-opacity: 1;
    color: rgb(172 172 172 / var(--tw-text-opacity));
}
.theme-toggle .theme-toggle__classic circle,
.theme-toggle .theme-toggle__classic path {
    fill: #acacac;
}


