/* 浅绿色主题样式 */
.theme-lightgreen a:hover {
    color: #4CAF50 !important; /* 绿色链接悬停颜色 */
}

.theme-lightgreen .card,
.theme-lightgreen .module,
.theme-lightgreen .site-card,
.theme-lightgreen .article-card,
.theme-lightgreen .search-form,
.theme-lightgreen .feedback-form,
.theme-lightgreen .pagination,
.theme-lightgreen .comment-form,
.theme-lightgreen .comment-list,
.theme-lightgreen .sidebar-module {
    border: 1px solid #C4E1E1 !important;
    box-shadow: none !important;
    transition: none !important;
}

.theme-lightgreen .card-header,
.theme-lightgreen .module-header,
.theme-lightgreen .site-card-header,
.theme-lightgreen .article-card-header,
.theme-lightgreen .sidebar-module-header {
    background: #fff !important;
    background-image: none !important;
    border-bottom: 1px solid #C4E1E1 !important;
    transition: none !important;
}

.theme-lightgreen .header.fixed {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid #C4E1E1 !important;
    box-shadow: none !important;
    transition: none !important;
}

.theme-lightgreen .footer {
    border-top: 1px solid #C4E1E1 !important;
    background: #fff !important;
    transition: none !important;
}

.theme-lightgreen .nav-pagination li a,
.theme-lightgreen .btn,
.theme-lightgreen button {
    transition: none !important;
}

/* 覆盖默认的橙色主题元素 */
.theme-lightgreen ::selection {
    background: #4CAF50 !important;
    color: #fff !important;
}

.theme-lightgreen .btn-primary,
.theme-lightgreen .pagination .active a,
.theme-lightgreen .nav-pagination .active a {
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
}

.theme-lightgreen .category-item.active,
.theme-lightgreen .category-item:hover {
    color: #4CAF50 !important;
    border-color: #4CAF50 !important;
}

/* 主题切换按钮样式 */
.theme-switch {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #4CAF50;
    box-shadow: 0 0 8px rgba(76,175,80,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-switch i {
    font-size: 20px;
    color: #666;
}

.theme-switch:hover {
    transform: scale(1.1);
}

/* 确保主题切换按钮在浅绿色主题下也有正确的样式 */
.theme-lightgreen .theme-switch {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76,175,80,0.5);
}