/* _content/mingBlazor/Pages/Admin.razor.rz.scp.css */
.login-container[b-djtwc2sdml] {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border: 2px solid #ff6f61; /* 鮮豔的邊框顏色 */
    border-radius: 15px; /* 更圓的邊角 */
    background-color: #fff3e6; /* 鮮豔的背景顏色 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* 更明顯的陰影 */
}
.form-group[b-djtwc2sdml] {
    margin-bottom: 20px; /* 增加間距 */
}
.btn-primary[b-djtwc2sdml] {
    background-color: #ff6f61; /* 鮮豔的按鈕顏色 */
    color: white;
    border: none; /* 去掉邊框 */
    border-radius: 5px; /* 圓角按鈕 */
    padding: 10px 15px; /* 增加內邊距 */
    transition: background-color 0.3s; /* 增加過渡效果 */
}

.btn-primary:hover[b-djtwc2sdml] {
    background-color: #ff3d3d; /* 懸停時的顏色 */
}
/* _content/mingBlazor/Pages/Article.razor.rz.scp.css */
body[b-mju36xotli] {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fff5e6;
    margin: 0;
    padding: 0;
}

.articleContainer[b-mju36xotli] {
    width: 100%;
    min-height: 100vh;
    background-color: #fffaf0;
    display: flex;
    flex-direction: column;
}

.articleHeader[b-mju36xotli] {
    background-color: #ff9966;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.title[b-mju36xotli] {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.subtitle[b-mju36xotli] {
    font-size: 1.4em;
    color: #fff;
    opacity: 0.9;
}
/* 使用更具体的选择器 */
[b-mju36xotli]  .articleContent figure.tarotCardImage {
    text-align: center;
    margin: 20px 0;
    display: block;
}

[b-mju36xotli]  .articleContentWrapper .articleContent figure.tarotCardImage img {
    max-width: 500px;
    max-height: 600px;
    width: auto;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

  .articleContentWrapper .articleContent figure.tarotCardImage figcaption[b-mju36xotli] {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    display: block;
}

.articleContent[b-mju36xotli] {
    flex-grow: 1;
    padding: 40px 5%;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

[b-mju36xotli] .articleContent h2 {
    font-size: 2.2em;
    color: #d35400;
    /* 深橙色 */
    border-bottom: 3px solid #ffd699;
    padding-bottom: 10px;
    margin-top: 50px;
    margin-bottom: 25px;
}

[b-mju36xotli] .articleContent h3 {
    font-size: 1.8em;
    color: #e67e22;
    /* 橙色 */
    margin-top: 40px;
    margin-bottom: 20px;
}

[b-mju36xotli] .articleContent h4 {
    font-size: 1.5em;
    color: #f39c12;
    /* 黃色 */
    margin-top: 30px;
    margin-bottom: 15px;
}

[b-mju36xotli] .articleContent p {
    margin-bottom: 20px;
    color: #5a4a41;
}

[b-mju36xotli] .articleContent a {
    color: #e67e22;
    text-decoration: none;
    border-bottom: 2px solid #ffd699;
    transition: all 0.3s ease;
}

[b-mju36xotli] .articleContent a:hover {
    color: #d35400;
    border-bottom: 2px solid #d35400;
}

[b-mju36xotli] .articleContent ul,
[b-mju36xotli] .articleContent ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

[b-mju36xotli] .articleContent li {
    margin-bottom: 10px;
}

[b-mju36xotli] .articleContent blockquote {
    border-left: 4px solid #f39c12;
    padding: 20px;
    margin: 20px 0;
    background-color: #ffeaa7;
    color: #5a4a41;
}

.articleFooter[b-mju36xotli] {
    background-color: #ffd699;
    padding: 30px 20px;
    text-align: center;
}

.backButton[b-mju36xotli] {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e67e22; /* 按鈕背景顏色 */
    color: #fff; /* 按鈕文字顏色 */
    text-decoration: none;
    border-radius: 25px; /* 增加圓角 */
    transition: all 0.3s ease; /* 添加過渡效果 */
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 增加陰影 */
}

.backButton:hover[b-mju36xotli] {
    background-color: #d35400; /* 懸停時的背景顏色 */
    transform: translateY(-2px); /* 懸停時的上升效果 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 懸停時的陰影效果 */
}

.backButton:focus[b-mju36xotli] {
    outline: none; /* 去掉焦點邊框 */
    box-shadow: 0 0 0 4px rgba(255, 153, 102, 0.5); /* 添加聚焦時的陰影 */
}

@media (max-width: 600px) {
    .articleHeader[b-mju36xotli] {
        padding: 40px 20px;
    }

    .title[b-mju36xotli] {
        font-size: 2.4em;
    }

    .subtitle[b-mju36xotli] {
        font-size: 1.2em;
    }

    .articleContent[b-mju36xotli] {
        padding: 30px 5%;
        font-size: 1em;
    }

    [b-mju36xotli] .articleContent h2 {
        font-size: 1.8em;
    }

    [b-mju36xotli] .articleContent h3 {
        font-size: 1.5em;
    }

    [b-mju36xotli] .articleContent h4 {
        font-size: 1.3em;
    }
}
/* _content/mingBlazor/Pages/BackendIndex.razor.rz.scp.css */
body[b-9rkt4ft0uk] {
}
/* _content/mingBlazor/Pages/Backend/ArticleEdit.razor.rz.scp.css */
body[b-2enhz9nnma] {
}
/* _content/mingBlazor/Pages/Backend/Articles.razor.rz.scp.css */
/* app.css */

/* Table styles */
.table[b-8s3oha4gs6] {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}

    .table th[b-8s3oha4gs6],
    .table td[b-8s3oha4gs6] {
        padding: 12px 15px;
        border: 1px solid #ddd;
    }

    .table th[b-8s3oha4gs6] {
        background-color: #f4f4f4;
        font-weight: bold;
    }

    .table tbody tr:nth-child(even)[b-8s3oha4gs6] {
        background-color: #f9f9f9;
    }

    .table tbody tr:hover[b-8s3oha4gs6] {
        background-color: #f1f1f1;
    }

/* Button styles */
.btn[b-8s3oha4gs6] {
    padding: 8px 12px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary[b-8s3oha4gs6] {
    background-color: #007bff;
    color: #fff;
}

    .btn-primary:hover[b-8s3oha4gs6] {
        background-color: #0056b3;
    }

.btn-link[b-8s3oha4gs6] {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    padding: 4px 8px;
    cursor: pointer;
}

    .btn-link.active[b-8s3oha4gs6] {
        font-weight: bold;
        text-decoration: none;
    }

    .btn-link:hover[b-8s3oha4gs6] {
        color: #0056b3;
    }

.btn[disabled][b-8s3oha4gs6] {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Pagination styles */
.pagination[b-8s3oha4gs6] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

    .pagination button[b-8s3oha4gs6] {
        margin: 0 5px;
        padding: 6px 12px;
        font-size: 1rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #fff;
        cursor: pointer;
    }

        .pagination button.active[b-8s3oha4gs6] {
            background-color: #007bff;
            color: #fff;
            font-weight: bold;
            cursor: default;
        }

        .pagination button:hover:not(.active):not([disabled])[b-8s3oha4gs6] {
            background-color: #f0f0f0;
        }

        .pagination button[disabled][b-8s3oha4gs6] {
            color: #ccc;
            cursor: not-allowed;
        }

/* Loading styles */
div[loading][b-8s3oha4gs6] {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
}

/* Overall page layout */
h3[b-8s3oha4gs6] {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

p[b-8s3oha4gs6] {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-top: 20px;
}
/* _content/mingBlazor/Pages/BaziFortuneTelling.razor.rz.scp.css */
/* General container and layout styles */
body[b-hv4rh76lu7] {
    font-family: 'Noto Sans TC', sans-serif;
    color: #4a4a4a;
    background-color: #fff5e6;
    margin: 0;
    padding: 0;
}

.baziContainer[b-hv4rh76lu7] {
    width: 100%;
    min-height: 100vh;
    background-color: #fffaf0;
    display: flex;
    flex-direction: column;
}

.baziHeader[b-hv4rh76lu7] {
    background-color: #ff9966;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.baziTitle[b-hv4rh76lu7] {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.baziContent[b-hv4rh76lu7] {
    flex-grow: 1;
    padding: 40px 5%;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.inputGroup[b-hv4rh76lu7] {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.dateInput[b-hv4rh76lu7] {
    flex: 1;
    margin-right: 10px;
}

    .dateInput:last-child[b-hv4rh76lu7] {
        margin-right: 0;
    }

.baziContent label[b-hv4rh76lu7] {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.baziContent input[b-hv4rh76lu7], .baziContent select[b-hv4rh76lu7] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    margin-top: 5px;
}

    .baziContent input:focus[b-hv4rh76lu7], .baziContent select:focus[b-hv4rh76lu7] {
        border-color: #ff9966;
    }

.submitButton[b-hv4rh76lu7] {
    padding: 15px 30px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

    .submitButton:hover[b-hv4rh76lu7] {
        background-color: #d35400;
    }

.result[b-hv4rh76lu7] {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
}

.baziFooter[b-hv4rh76lu7] {
    background-color: #ffd699;
    padding: 30px 20px;
    text-align: center;
}

.backButton[b-hv4rh76lu7] {
    padding: 15px 30px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .backButton:hover[b-hv4rh76lu7] {
        background-color: #d35400;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 600px) {
    .baziHeader[b-hv4rh76lu7] {
        padding: 40px 20px;
    }

    .baziTitle[b-hv4rh76lu7] {
        font-size: 2.4em;
    }

    .baziContent[b-hv4rh76lu7] {
        padding: 30px 5%;
        font-size: 1em;
    }

    .inputGroup[b-hv4rh76lu7] {
        flex-direction: column;
    }

    .dateInput[b-hv4rh76lu7] {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* _content/mingBlazor/Pages/BaziFortuneTellingResult.razor.rz.scp.css */
body[b-md5rpfw0fu] {
    font-family: 'Noto Sans TC', sans-serif;
    color: #4a4a4a;
    background-color: #fff5e6;
    margin: 0;
    padding: 0;
}

.baziResultContainer[b-md5rpfw0fu] {
    width: 100%;
    min-height: 100vh;
    background-color: #fffaf0;
    display: flex;
    flex-direction: column;
}

.baziResultHeader[b-md5rpfw0fu] {
    background-color: #ff9966;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.baziResultTitle[b-md5rpfw0fu] {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.baziResultContent[b-md5rpfw0fu] {
    flex-grow: 1;
    padding: 40px 5%;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.baziResultTable[b-md5rpfw0fu] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th[b-md5rpfw0fu], td[b-md5rpfw0fu] {
    padding: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

th[b-md5rpfw0fu] {
    background-color: #4C89E3;
    color: white;
}

.baziResultFooter[b-md5rpfw0fu] {
    background-color: #ffd699;
    padding: 30px 20px;
    text-align: center;
}

.backButton[b-md5rpfw0fu] {
    padding: 15px 30px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .backButton:hover[b-md5rpfw0fu] {
        background-color: #d35400;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }
/* _content/mingBlazor/Pages/ChatRoom.razor.rz.scp.css */


/* 媒体查询，根据屏幕大小调整字体大小 */
@media (min-width: 1600px) {
    .dos-layout .chat-container[b-ipdb4ggn9g] {
        font-size: 38px; /* 屏幕宽度大于1600px时字体大小 */
    }
}

@media (max-width: 1200px) {
    .dos-layout .chat-container[b-ipdb4ggn9g] {
        font-size: 34px; /* 屏幕宽度小于1200px时字体大小 */
    }
}

@media (max-width: 800px) {
    .dos-layout .chat-container[b-ipdb4ggn9g] {
        font-size: 28px; /* 屏幕宽度小于800px时字体大小 */
    }
}

@media (max-width: 500px) {
    .dos-layout .chat-container[b-ipdb4ggn9g] {
        font-size: 20px; /* 屏幕宽度小于500px时字体大小 */
    }
}



.header-bar[b-ipdb4ggn9g] {
    position: fixed; /* 固定在顶部 */
    top: 0; /* 距离顶部0 */
    left: 0; /* 距离左边0 */
    right: 0; /* 距离右边0 */
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
    background-color: green; /* 背景色 */
    padding: 0; /* 去掉内边距 */
    height: 50px; /* 设置固定高度 */
    z-index: 1000; /* 确保在其他元素之上 */
}

.header-main[b-ipdb4ggn9g] {
    flex: 0 0 20%; /* 20% 宽度 */
    color: white; /* 文字颜色为白色 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%; /* 高度与 header-bar 一致 */
}

.header-topic[b-ipdb4ggn9g] {
    flex: 0 0 70%; /* 70% 宽度 */
    color: white; /* 文字颜色为白色 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%; /* 高度与 header-bar 一致 */
    background-color: purple; /* 紫色背景 */
}

.home-link[b-ipdb4ggn9g] {
    flex: 0 0 10%; /* 10% 宽度 */
    color: white; /* 链接文字颜色为白色 */
    text-decoration: none; /* 去掉下划线 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 100%; /* 高度与 header-bar 一致 */
    background-color: darkgreen; /* 背景色 */
}

.home-link:hover[b-ipdb4ggn9g] {
    background-color: green; /* 悬停时变色 */
}

.login-input[b-ipdb4ggn9g] {
    position: fixed; /* 固定在底部 */
    bottom: 0; /* 距离底部0 */
    left: 0; /* 距离左边0 */
    right: 0; /* 距离右边0 */
    background-color: black; /* 背景色 */
    padding: 10px; /* 内边距 */
    border-top: 1px solid white; /* 顶部边框 */
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
}

.login-form[b-ipdb4ggn9g] {
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
    width: 100%; /* 确保宽度为100% */
}

.label-text[b-ipdb4ggn9g] {
    margin-right: 10px; /* 标签与输入框之间的间距 */
    flex: 0 0 auto; /* 标签宽度自适应 */
    color: #ccc;
}


[b-ipdb4ggn9g] .chat-messages {
    max-height: calc(100vh - 200px); /* 最大高度，减去header和输入框的高度 */
    overflow-y: auto; /* 允许垂直滚动 */
    padding: 10px; /* 内边距 */
    margin-bottom: 10px; /* 底部边距 */

    background-color: black; /* 背景色 */
    width: 100%; /* 确保聊天消息区域宽度为100% */
}


.chat-container[b-ipdb4ggn9g] {
    width: 100vw; /* 宽度占满整个视口 */
    height: calc(100vh - 50px); /* 高度占满视口，减去 header-bar 的高度 */
    background-color: black; /* 背景色为黑色 */
    display: flex; /* 使用 flexbox 布局 */
    flex-direction: column; /* 垂直排列子元素 */
    margin-top: 50px; /* 添加上边距，确保不被 header-bar 遮挡 */
    overflow: hidden; /* 隐藏溢出内容 */
}


.chat-main[b-ipdb4ggn9g] {
    width: 100%; /* 确保聊天主区域宽度为100% */
}



.message[b-ipdb4ggn9g] {
    margin: 5px 0; /* 消息之间的间距 */
    color: white; /* 确保消息文字为白色 */
}

.chat-input[b-ipdb4ggn9g] {
    display: flex; /* 使用flex布局 */
    flex-direction: column; /* 垂直排列 */
    position: fixed; /* 固定在底部 */
    bottom: 0; /* 距离底部0 */
    left: 0; /* 距离左边0 */
    right: 0; /* 距离右边0 */
    background-color: black; /* 背景色 */
    padding: 10px; /* 内边距 */
}


.user-name[b-ipdb4ggn9g] {
    margin-right: 10px; /* 用户名与输入框之间的间距 */
    color: #ccc;
}

.input-field[b-ipdb4ggn9g] {
    background-color: black; /* 背景色 */
    color: white; /* 设置输入框文字颜色为白色 */
    border: none; /* 去掉边框 */
    /*border-bottom: 1px solid green;  只显示底线 */
    padding: 5px; /* 内边距 */
    flex: 1; /* 输入框占据剩余空间 */
    outline: none; /* 去掉聚焦时的轮廓 */
}

.btn[b-ipdb4ggn9g] {
    background-color: green;
    color: white; /* 按钮文字颜色设置为白色 */
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.btn:hover[b-ipdb4ggn9g] {
    background-color: darkgreen;
}

.command-line[b-ipdb4ggn9g] {
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
    margin: 5px 0; /* 上下边距 */
}

.line[b-ipdb4ggn9g] {
    flex: 1; /* 线条占据剩余空间 */
    border: none; /* 去掉默认边框 */
    border-top: 1px solid white; /* 设置线条颜色为白色 */
    margin-right: 10px; /* 线条与文字之间的间距 */
}

.command-text[b-ipdb4ggn9g] {
    color: white; /* 设置文字颜色为白色 */

}

.input-area[b-ipdb4ggn9g] {
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
}



.command-list[b-ipdb4ggn9g] {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    list-style-type: none;
    padding: 0;
    margin: 0 0 5px 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.command-item[b-ipdb4ggn9g] {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.command-item:hover[b-ipdb4ggn9g] {
    background-color: #f0f0f0;
}
.command-key[b-ipdb4ggn9g] {
    font-weight: bold;
    margin-right: 10px;
    color: #0066cc;
}
.command-description[b-ipdb4ggn9g] {
    color: #666;
}



/*在線人數*/
.online-users-list[b-ipdb4ggn9g] {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000;
    color: #00ff00;
    padding: 10px;
    border: 2px solid #00ff00;
    width: fit-content;
}

.list-header[b-ipdb4ggn9g] {
    margin-bottom: 10px;
    font-weight: bold;
}

.user-row[b-ipdb4ggn9g] {
    white-space: nowrap;
    margin-bottom: 5px;
}

.user-info[b-ipdb4ggn9g] {
    display: inline-block;
    width: 200px; /* 調整這個值以適應您的需求 */
}

.chat-id[b-ipdb4ggn9g], .user-id[b-ipdb4ggn9g] {
    display: inline-block;
}

.separator[b-ipdb4ggn9g] {
    color: #00ff00;
    margin: 0 5px;
}
/* _content/mingBlazor/Pages/Contact.razor.rz.scp.css */
/* 基本樣式 */
body[b-gkr7fsgnc9] {
    font-family: 'Noto Sans KR', sans-serif; /* 使用韓文常用字體 */
    margin: 0; /* 移除默認邊距 */
    padding: 0; /* 移除默認內邊距 */
    height: 100vh; /* 佔滿整個視口高度 */
    display: flex; /* 使用 Flexbox */
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
    background-color: #f9f9f9; /* 背景顏色 */
}

/* 容器樣式 */
.container[b-gkr7fsgnc9] {
    width: 100%; /* 佔滿寬度 */
    /*max-width: 600px;  最大寬度 */
    padding: 20px; /* 內邊距 */
    background-color: white; /* 背景顏色 */
    border-radius: 10px; /* 圓角設計 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 輕微陰影效果 */
}

/* 標題樣式 */
h3[b-gkr7fsgnc9] {
    color: #4b6f99; /* 柔和的藍色 */
    text-align: center;
    margin-bottom: 30px;
}

/* 標籤樣式 */
label[b-gkr7fsgnc9] {
    font-weight: 600; /* 粗體字 */
    display: block;
    margin-bottom: 5px;
    color: #5b5b5b; /* 顏色 */
}

/* 輸入框和文本區域樣式 */
input[b-gkr7fsgnc9], textarea[b-gkr7fsgnc9] {
    width: 100%; /* 寬度100% */
    padding: 12px; /* 內部邊距 */
    border: 1px solid #e0e0e0; /* 邊框顏色 */
    border-radius: 10px; /* 圓角設計 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 輕微陰影效果 */
    font-size: 16px; /* 字體大小 */
    margin-bottom: 15px; /* 下邊距 */
}

/* 按鈕樣式 */
button[b-gkr7fsgnc9] {
    background-color: #5b95e8; /* 柔和的藍色 */
    color: white; /* 字體顏色 */
    border: none; /* 無邊框 */
    border-radius: 10px; /* 圓角設計 */
    padding: 12px 15px; /* 內部邊距 */
    cursor: pointer; /* 鼠標指針 */
    font-size: 16px; /* 字體大小 */
    transition: background-color 0.3s, transform 0.2s; /* 動效 */
    width: 100%; /* 寬度100% */
}

    /* 按鈕懸停樣式 */
    button:hover:not(:disabled)[b-gkr7fsgnc9] {
        background-color: #4a85d4; /* 深一點的藍色 */
        transform: scale(1.05); /* 按鈕懸停放大效果 */
    }

    /* 按鈕禁用樣式 */
    button:disabled[b-gkr7fsgnc9] {
        background-color: #ccc; /* 禁用時顏色 */
        cursor: not-allowed; /* 禁用時顯示禁止光標 */
    }

/* 訊息顯示樣式 */
.message[b-gkr7fsgnc9] {
    text-align: center; /* 文字置中 */
    font-weight: bold; /* 粗體字 */
    color: #4b6f99; /* 顏色 */
    margin-top: 20px; /* 上邊距 */
}

.error-message[b-gkr7fsgnc9] {
    color: #d9534f; /* 鮮紅色 */
    text-align: center; /* 置中 */
    font-weight: bold; /* 粗體 */
    margin-top: 10px; /* 上邊距 */
}
/* _content/mingBlazor/Pages/Example.razor.rz.scp.css */
/* example.css */
.example-container[b-qqf6w74tpw] {
    background-color: lightblue;
    padding: 20px;
    text-align: center;
    border: 1px solid #0078d4;
    border-radius: 8px;
}

.example-text[b-qqf6w74tpw] {
    color: #0078d4;
    font-size: 24px;
    font-weight: bold;
}
/* _content/mingBlazor/Pages/Index.razor.rz.scp.css */
/* Index.razor.css */

/* 整體佈局 */
.container[b-fubm65dci2] {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f9fa; /* 柔和的白色背景 */
}

/* 左側區塊樣式 */
.left-column[b-fubm65dci2] {
    flex: 1;
    margin-right: 20px;
    background-color: #ffffff; /* 白色區塊背景 */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* 微妙的陰影效果 */
}

.left-column h2[b-fubm65dci2] {
    font-size: 1.5rem;
    color: #3a6ea5; /* 柔和的藍色標題 */
    margin-bottom: 10px;
}

.left-column ul[b-fubm65dci2] {
    list-style: none;
    padding: 0;
}

.left-column li[b-fubm65dci2] {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333; /* 深灰色字體 */
    border-bottom: 1px solid #eaeaea; /* 分隔線 */
}

/* 右側區塊樣式 */
.right-column[b-fubm65dci2] {
    flex: 0.4;
    display: flex;
    flex-direction: column; /* 垂直排列 */
    justify-content: flex-start; /* 确保内容从顶部开始 */
}

.current-time[b-fubm65dci2], .tag-cloud[b-fubm65dci2] {
    background-color: #ffffff; /* 白色背景 */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* 相同陰影效果 */
    margin-bottom: 20px;
}

.current-time h2[b-fubm65dci2], .tag-cloud h2[b-fubm65dci2] {
    font-size: 1.4rem;
    color: #3a6ea5; /* 藍色標題 */
}

.current-time p[b-fubm65dci2] {
    font-size: 1.2rem;
    color: #666; /* 輕柔的灰色文字 */
}

/* 標籤雲樣式 */
.tag-cloud[b-fubm65dci2] {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
}

.tag[b-fubm65dci2] {
    background-color: #d1e7dd; /* 柔和的綠色 */
    color: #155724;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* 微陰影 */
    transition: background-color 0.3s ease;
}

.loading[b-fubm65dci2] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 1.2em;
    color: #666;
}

    .loading[b-fubm65dci2]::after {
        content: '';
        width: 20px;
        height: 20px;
        margin-left: 10px;
        border: 2px solid #ccc;
        border-top-color: #666;
        border-radius: 50%;
        animation: spinner-b-fubm65dci2 0.6s linear infinite;
    }

@keyframes spinner-b-fubm65dci2 {
    to {
        transform: rotate(360deg);
    }
}

.pagination a[b-fubm65dci2] {
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

    .pagination a:hover:not(.disabled)[b-fubm65dci2] {
        background-color: #f5f5f5;
    }

    .pagination a.active[b-fubm65dci2] {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

    .pagination a.disabled[b-fubm65dci2] {
        background-color: #f5f5f5;
        color: #999;
        cursor: not-allowed;
    }

/* 媒体查询：小屏幕（如手机） */
@media (max-width: 600px) {
    .container[b-fubm65dci2] {
        flex-direction: column; /* 垂直排列 */
    }

    .left-column[b-fubm65dci2] {
        margin-right: 0; /* 去掉右边距 */
        margin-bottom: 20px; /* 添加底部间距 */
    }

    .right-column[b-fubm65dci2] {
        flex: 1; /* 右侧区块占满宽度 */
    }

    .current-time[b-fubm65dci2], .tag-cloud[b-fubm65dci2] {
        margin-bottom: 10px; /* 减少底部间距 */
    }
}

/* 媒体查询：中等屏幕（如平板） */
@media (min-width: 601px) and (max-width: 1024px) {
    .left-column[b-fubm65dci2] {
        margin-right: 15px; /* 调整右边距 */
    }

    .right-column[b-fubm65dci2] {
        flex: 0.35; /* 调整右侧区块宽度 */
    }
}

/* 媒体查询：大屏幕（如桌面） */
@media (min-width: 1025px) {
    .left-column[b-fubm65dci2] {
        margin-right: 20px; /* 保持右边距 */
    }

    .right-column[b-fubm65dci2] {
        flex: 0.4; /* 保持右侧区块宽度 */
    }
}
/* _content/mingBlazor/Pages/LttTelling.razor.rz.scp.css */
body[b-qtid5h1q2c] {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0); /* 黑白灰渐变背景 */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h3[b-qtid5h1q2c], h4[b-qtid5h1q2c], h5[b-qtid5h1q2c] {
    color: #333; /* 深灰色标题 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}

.cards-deck[b-qtid5h1q2c] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.tarot-card[b-qtid5h1q2c] {
    position: absolute;
    width: 120px;
    height: 180px;
    background: #f5f5f5; /* 卡片白色背景 */
    border: 2px solid #888; /* 深灰色边框 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 简洁阴影 */
    transform-origin: center;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

.tarot-card:hover[b-qtid5h1q2c] {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 增强阴影 */
}

.tarot-card img[b-qtid5h1q2c] {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* 牌面翻转 */
.tarot-card[data-orientation="reversed"] img[b-qtid5h1q2c] {
    transform: rotate(180deg);
}

/* 选中卡片的容器 */
.selected-cards-container[b-qtid5h1q2c] {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 50px auto; /* 与圆圈保持适当距离 */
    padding: 20px;
    background: #e0e0e0; /* 浅灰色背景 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 简单阴影 */
}

.selected-slot[b-qtid5h1q2c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 220px;
    border: 2px solid #888; /* 深灰色边框 */
    border-radius: 10px;
    background: #f5f5f5; /* 浅灰色背景 */
    padding: 10px;
    z-index: 4;
}

.selected-slot:hover[b-qtid5h1q2c] {
    transform: scale(1.05);
    border-color: #555; /* 鼠标悬停时边框变深 */
}

.slot-label[b-qtid5h1q2c] {
    font-size: 16px;
    font-weight: bold;
    color: #333; /* 深灰色文字 */
    margin-bottom: 8px;
}

button[b-qtid5h1q2c] {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #333; /* 黑色按钮背景 */
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover[b-qtid5h1q2c] {
    background: #555; /* 鼠标悬停时浅黑色 */
    transform: scale(1.05);
}

button:active[b-qtid5h1q2c] {
    transform: scale(0.95);
}

/* 圆圈样式 */
.circle[b-qtid5h1q2c] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px; /* 圆圈直径 */
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f5f5f5; /* 浅灰色圆圈背景 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 简单阴影 */
    overflow: visible; /* 确保卡片不被裁剪 */
    z-index: 1;
}

/* 圆圈中的卡片 */
.circle .tarot-card[b-qtid5h1q2c] {
    position: absolute;
    transform-origin: center;
    z-index: 2;
}

/* 圆圈中被选中的卡片 */
.circle .tarot-card.selected[b-qtid5h1q2c] {
    border: 2px dashed #aaa; /* 虚线灰色边框 */
    opacity: 0.5; /* 半透明效果 */
    pointer-events: none; /* 禁止交互 */
}

/* 响应式布局 */
@media (max-width: 768px) {
    .circle[b-qtid5h1q2c] {
        width: 300px;
        height: 300px;
    }

    .selected-cards-container[b-qtid5h1q2c] {
        flex-direction: column;
        align-items: center;
    }
}
/* _content/mingBlazor/Pages/ReservoirMap.razor.rz.scp.css */

#map[b-yja2cgpm0i] {
    overflow: visible; /* 確保所有水庫都可見 */
    position: relative;
}

.water-level-indicator[b-yja2cgpm0i] {
    position: absolute;
    z-index: 10; /* 確保不被覆蓋 */
}

.indicator-circle[b-yja2cgpm0i] {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #e6e6e6;
    position: relative;
    overflow: hidden;
}

.water-level[b-yja2cgpm0i] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e90ff;
    border-radius: 0 0 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    animation: wave-b-yja2cgpm0i 2s infinite linear;
}

.water-wave[b-yja2cgpm0i] {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    overflow: hidden;
}

.wave[b-yja2cgpm0i] {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url('wave.png');
    background-size: 100% 100%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.wave1[b-yja2cgpm0i] {
    left: -37.5px;
    animation: wave-move-b-yja2cgpm0i 2s infinite;
}

.wave2[b-yja2cgpm0i] {
    left: 37.5px;
    animation: wave-move-b-yja2cgpm0i 2s infinite;
    animation-delay: -1s;
}

@keyframes wave-b-yja2cgpm0i {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes wave-move-b-yja2cgpm0i {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reservoir-name[b-yja2cgpm0i] {
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
}

/* _content/mingBlazor/Pages/SolarTermPages.razor.rz.scp.css */
body[b-ixk0lnot7b] {
    font-family: 'Noto Sans TC', sans-serif;
    color: #4a4a4a;
    background-color: #fff5e6;
    margin: 0;
    padding: 0;
}

.solarTermsContainer[b-ixk0lnot7b] {
    width: 100%;
    min-height: 100vh;
    background-color: #fffaf0;
    display: flex;
    flex-direction: column;
}

.solarTermsHeader[b-ixk0lnot7b] {
    background-color: #ff9966;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.solarTitle[b-ixk0lnot7b] {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.solarTermsContent[b-ixk0lnot7b] {
    flex-grow: 1;
    padding: 40px 5%;
    font-size: 1.1em;
    line-height: 1.8;
/*    max-width: 800px;*/
    margin: 0 auto;
}

    .solarTermsContent label[b-ixk0lnot7b] {
        font-weight: bold;
        margin-right: 10px;
    }

    .solarTermsContent select[b-ixk0lnot7b] {
        padding: 10px;
        font-size: 1em;
        border: 2px solid #d1d5db;
        border-radius: 5px;
        outline: none;
        transition: border-color 0.3s;
    }

        .solarTermsContent select:focus[b-ixk0lnot7b] {
            border-color: #ff9966;
        }

.solarTermsTable[b-ixk0lnot7b] {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

th[b-ixk0lnot7b], td[b-ixk0lnot7b] {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th[b-ixk0lnot7b] {
    background-color: #ff9966;
    color: white;
}

tr:hover[b-ixk0lnot7b] {
    background-color: #f1f9ff;
}

/* Footer and button styling */
.solarTermsFooter[b-ixk0lnot7b] {
    background-color: #ffd699;
    padding: 30px 20px;
    text-align: center;
}

.backButton[b-ixk0lnot7b] {
    padding: 15px 30px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .backButton:hover[b-ixk0lnot7b] {
        background-color: #d35400;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 600px) {
    .solarTermsHeader[b-ixk0lnot7b] {
        padding: 40px 20px;
    }

    .solarTitle[b-ixk0lnot7b] {
        font-size: 2.4em;
    }
/* _content/mingBlazor/Shared/BackendLayout.razor.rz.scp.css */
.backend-layout[b-pmavecdgk8] {
    display: flex; /* 使用 Flexbox 佈局 */
    height: 100vh; /* 設置高度為視口高度 */
}
.menu[b-pmavecdgk8] {
    width: 250px; /* 左側菜單的寬度 */
    background-color: #f8f9fa; /* 菜單背景顏色 */
    padding: 20px; /* 菜單內邊距 */
    border-right: 1px solid #dee2e6; /* 菜單右邊框 */
}
.content[b-pmavecdgk8] {
    flex-grow: 1; /* 右側內容區域自動填充剩餘空間 */
    padding: 20px; /* 內容內邊距 */
}
/* _content/mingBlazor/Shared/DosLayout.razor.rz.scp.css */
/* _content/mingBlazor/Shared/MainLayout.razor.rz.scp.css */
/* _content/mingBlazor/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-1h6fqfgjva] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-1h6fqfgjva] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-1h6fqfgjva] {
    font-size: 1.1rem;
}

.oi[b-1h6fqfgjva] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-1h6fqfgjva] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1h6fqfgjva] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1h6fqfgjva] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1h6fqfgjva]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-1h6fqfgjva]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-1h6fqfgjva]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-1h6fqfgjva] {
        display: none;
    }

    .collapse[b-1h6fqfgjva] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
