/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

/* 头部样式 */
header {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo span {
    color: #3498db;
}

/* 搜索框样式 */
.search-box {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* 用户操作区域 */
.user-actions {
    display: flex;
    align-items: center;
}

.user-actions a {
    color: white;
    margin-left: 15px;
    font-size: 14px;
}

.user-actions a:hover {
    color: #3498db;
}

/* 导航菜单 */
nav {
    background-color: #34495e;
}

.nav-menu {
    display: flex;
    justify-content: flex-start;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    color: white;
    padding: 12px 20px;
    transition: all 0.3s;
}

.nav-menu li a:hover {
    background-color: #3498db;
}

/* 导航菜单激活状态 */
.nav-menu li a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu li a.active {
    background-color: #3498db;
    font-weight: bold;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #3498db;
    transition: all 0.3s ease;
}

/* 点击反馈效果 */
.nav-menu li a.nav-link-clicked {
    background-color: #2980b9;
    transform: scale(0.98);
    transition: transform 0.1s ease, background-color 0.1s ease;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f5f5f5;
}

/* 汉堡菜单 */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) {
    top: 5px;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 5px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 主要内容 */
.main-content {
    display: flex;
    margin: 20px 0;
}

.content-left {
    flex: 1;
    margin-right: 20px;
}

.content-right {
    width: 300px;
}

/* 内容卡片 */
.card, .policy-container {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.policy-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 30px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-sizing: border-box;
}

.policy-container h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2em;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.policy-container h2 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
    padding-left: 15px;
    border-left: 3px solid #3498db;
}

.policy-container p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.policy-container .footer {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 12px;
    padding: 20px;
    border-top: 1px solid #ddd;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .policy-container h1 {
        font-size: 1.5em;
    }
    
    .policy-container h2 {
        font-size: 1.1em;
    }
}

.card-header {
    padding: 12px 15px;
    background-color: #3498db;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header a {
    color: white;
    font-size: 14px;
    font-weight: normal;
}

.card-body {
    padding: 15px;
}

/* 资源列表 */
.resource-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    color: #3498db;
}

.resource-list .date {
    color: #999;
    font-size: 12px;
}

/* 热门标签 */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

.tag:hover {
    background-color: #3498db;
    color: white;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.pagination a.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* 页脚 */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
}

.copyright {
    font-size: 14px;
    color: #bbb;
}

/* 登录/注册模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 400px;
    border-radius: 5px;
    overflow: hidden;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 15px;
    background-color: #3498db;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 18px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-actions {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

.tab-container {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    border-bottom-color: #3498db;
    color: #3498db;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .content-left {
        margin-right: 0;
    }

    .content-right {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .resource-list li {
        flex-direction: column;
    }

    .resource-list .date {
        margin-top: 5px;
    }
}

/* 矢量图标 */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.icon-download::before {
    content: "↓";
}

.icon-star::before {
    content: "★";
}

.icon-fire::before {
    content: "🔥";
}

.icon-new::before {
    content: "🆕";
}

.icon-user::before {
    content: "👤";
}

.icon-lock::before {
    content: "🔒";
}

.icon-search::before {
    content: "🔍";
}

.icon-dashboard::before {
    content: "📊";
}

.icon-logout::before {
    content: "🚪";
}

/* 首页英雄区域布局 */
.hero-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* 轮播图样式 - 现代极简风格 */
.carousel-container {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    display: block; /* 确保在所有设备上都显示 */
}

.carousel {
    position: relative;
    height: 360px;
    /* 增加高度，提升视觉体验 */
    overflow: hidden;
    z-index: 1; /* 确保轮播图在正确的层级 */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100%);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease-out;
}

.carousel-slide.active img {
    transform: scale(1.1);
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 40px 30px 30px;
    z-index: 2;
}

.carousel-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.9;
}

.carousel-content .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #34d399;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.carousel-content .btn:hover {
    background-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 211, 153, 0.35);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.15);
}

.carousel-prev {
    left: 25px;
}

.carousel-next {
    right: 25px;
}

.carousel-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
}

.indicator.active {
    background-color: #34d399;
    width: 28px;
    border-radius: 4px;
    transform: scale(1);
}

/* 轮播图响应式设计 */
@media (max-width: 992px) {
    .carousel {
        height: 320px;
    }

    .carousel-content {
        padding: 35px 25px 25px;
    }

    .carousel-content h2 {
        font-size: 28px;
    }

    .carousel-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .carousel-indicators {
        bottom: 90px;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 280px;
    }

    .carousel-content {
        padding: 30px 20px 20px;
        text-align: center;
    }

    .carousel-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .carousel-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .carousel-content .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .carousel-prev,
    .carousel-next {
        width: 48px;
        height: 48px;
        font-size: 24px;
        left: 15px;
        right: 15px;
    }

    .carousel-indicators {
        bottom: 80px;
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .carousel {
        height: 220px;
    }

    .carousel-content {
        padding: 20px 15px 15px;
    }

    .carousel-content h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .carousel-content p {
        display: none;
    }

    .carousel-content .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
        left: 10px;
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 5px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .indicator.active {
        width: 20px;
    }
}

/* 加载动画 */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-slide.loading::before {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .content-left {
        margin-right: 0;
    }

    .content-right {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .resource-list li {
        flex-direction: column;
    }

    .resource-list .date {
        margin-top: 5px;
    }
}

/* 矢量图标 */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.icon-download::before {
    content: "↓";
}

.icon-star::before {
    content: "★";
}

.icon-fire::before {
    content: "🔥";
}

.icon-new::before {
    content: "🆕";
}

.icon-user::before {
    content: "👤";
}

.icon-lock::before {
    content: "🔒";
}

.icon-search::before {
    content: "🔍";
}

/* 首页英雄区域布局 */
.hero-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* 移动端英雄区域响应式优化 */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        gap: 15px;
        display: flex !important; /* 确保在移动端强制使用flex布局 */
        position: relative;
        z-index: 10; /* 确保在最上层 */
    }
    
    .hot-searches-container {
        width: 100%;
        order: 2;
    }
    
    .carousel-container {
        order: 1;
        width: 100%;
        min-height: 220px; /* 确保有足够的高度 */
        display: block !important; /* 强制显示 */
        position: relative;
        z-index: 20; /* 确保在最上层 */
    }
    
    .carousel {
        position: relative;
        height: 220px !important; /* 强制设置高度 */
        overflow: hidden;
        display: block !important; /* 强制显示 */
    }
    
    /* 确保轮播项在移动端正常显示 */
    .carousel-slide {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* 确保轮播图中的图片在移动端正常显示 */
    .carousel-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
}


/* 热门搜索区域样式 */
.hot-searches-container {
    width: 300px;
    flex-shrink: 0;
}

.hot-searches-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-search-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hot-search-item:last-child {
    border-bottom: none;
}

.search-rank {
    font-size: 16px;
    font-weight: bold;
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

.top-rank {
    font-weight: bold;
}

.search-keyword {
    flex: 1;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.search-keyword:hover {
    color: #1890ff;
    text-decoration: underline;
}

.search-count {
    font-size: 12px;
    color: #999;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }

    .hot-searches-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
    }

    .software-card-header {
        flex-direction: column;
        text-align: center;
    }

    .software-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .software-details {
        flex-direction: column;
        gap: 5px;
    }

    .pagination-controls {
        flex-wrap: wrap;
    }
}

/* 标签页样式 */
.tab {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    display: inline-block;
}

.tab.active {
    background-color: white;
    color: #007bff;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-top: none;
    background-color: white;
}

.tab-content.active {
    display: block;
}

/* 搜索页面样式 */
.search-page {
    background-color: #f5f5f5;
    padding: 20px 0;
}

.search-header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.search-header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

#search-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#result-count {
    color: #666;
    font-size: 14px;
}

.search-filters {
    display: flex;
    gap: 10px;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #007bff;
}

.search-content {
    padding: 20px 0;
}

.search-results {
    background-color: white;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.search-result-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.search-result-item:last-child {
    border-bottom: none;
}

.result-type {
    display: inline-block;
    padding: 3px 8px;
    background-color: #007bff;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
}

.result-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #007bff;
}

.result-title:hover {
    text-decoration: underline;
}

.result-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.result-description {
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

/* 加载状态 */
.loading-state {
    text-align: center;
    padding: 40px 0;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background-color: white;
    color: #007bff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pagination button:hover:not(:disabled) {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .page-number {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background-color: white;
    color: #007bff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pagination .page-number:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .page-number.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}