/* phpMsgBox 代码风格动态特效 */
#phpMsgBox {
#phpMsgBox {
    font-family: 'Fira Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
    font-size: 15px;
    /* 动态代码风格背景：流动彩色条纹+噪点 */
    background: linear-gradient(120deg, #232526 0%, #232526 30%, #414345 60%, #232526 100%);
    color: #00eaff;
    border-radius: 7px;
    margin-top: 10px;
    margin-bottom: 8px;
    padding: 12px 18px;
    min-height: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    border: 1.5px solid #2b86c5;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: background 0.4s, color 0.4s;
}
#phpMsgBox::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.22;
    background: repeating-linear-gradient(120deg, #00eaff 0 2px, transparent 2px 16px, #ffb86c 16px 18px, transparent 18px 32px),
                repeating-linear-gradient(60deg, #50fa7b 0 1.5px, transparent 1.5px 12px, #ff3cac 12px 14px, transparent 14px 28px);
    animation: code-stripes 3.5s linear infinite;
}
#phpMsgBox::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.10;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><filter id="n" x="0" y="0"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2"/></filter><rect width="60" height="60" fill="white" filter="url(%23n)" opacity="0.5"/></svg>');
    background-size: 120px 120px;
    mix-blend-mode: overlay;
    animation: code-noise 7s steps(10) infinite;
}
@keyframes code-stripes {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 120px 60px, 80px 40px; }
}
@keyframes code-noise {
    0% { opacity: 0.10; }
    50% { opacity: 0.18; }
    100% { opacity: 0.10; }
}
    color: #00eaff;
    border-radius: 7px;
    margin-top: 10px;
    margin-bottom: 8px;
    padding: 12px 18px;
    min-height: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    border: 1.5px solid #2b86c5;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, color 0.4s;
}
#phpMsgBox.code-typing {
    border-color: #ffb86c;
    animation: code-glow 1.2s infinite alternate;
}
@keyframes code-glow {
    0% { box-shadow: 0 0 8px #00eaff, 0 2px 12px 0 rgba(0,0,0,0.10); }
    100% { box-shadow: 0 0 18px #ffb86c, 0 2px 18px 0 rgba(0,0,0,0.18); }
}
/* 表头可拖拽列宽手柄样式 */
.th-resizer {
    opacity: 0.6;
    width: 8px;
    min-width: 8px;
    height: 100%;
    border-radius: 4px;
    transition: background 0.2s, opacity 0.2s;
}
.th-resizer:hover {
    opacity: 1;
    background: linear-gradient(180deg, #ffb86c 0%, #ff3cac 100%);
}
/* 炫酷导入/导出数据库按钮特效 */
.sidebar-actions button[onclick*="showImportDbModal"] {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #1976d2;
    color: #fff;
    border: none;
}
.sidebar-actions button[onclick*="showImportDbModal"]::before {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    border-radius: 8px;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, #00eaff, #42e695, #ffb86c, #ff3cac, #00eaff 360deg);
    filter: blur(1.2px) brightness(1.2);
    z-index: 0;
    animation: import-glow 2.5s linear infinite;
    pointer-events: none;
}
.sidebar-actions button[onclick*="showImportDbModal"]::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 6px;
    background: #1976d2;
    z-index: 1;
    pointer-events: none;
}
.sidebar-actions button[onclick*="showImportDbModal"] span,
.sidebar-actions button[onclick*="showImportDbModal"] span {
    position: relative;
    z-index: 3;
}
.sidebar-actions button[onclick*="showImportDbModal"] {
    position: relative;
    z-index: 1;
}
@keyframes import-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sidebar-actions button[onclick*="exportDatabase"] {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #8e24aa;
    color: #fff;
    border: none;
}
.sidebar-actions button[onclick*="exportDatabase"]::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    border-radius: 8px;
    z-index: 0;
    background: repeating-linear-gradient(120deg, #ff3cac 0 8px, #42e695 8px 16px, #2b86c5 16px 24px, #ffb86c 24px 32px);
    background-size: 200% 200%;
    opacity: 0.22;
    animation: export-particles 2.2s linear infinite;
    pointer-events: none;
}
.sidebar-actions button[onclick*="exportDatabase"] span,
.sidebar-actions button[onclick*="exportDatabase"] {
    position: relative;
    z-index: 2;
}
@keyframes export-particles {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}
.sidebar-title {
        font-size: 22px;
        font-weight: 800;
        color: #00eaff;
        letter-spacing: 2px;
        text-align: center;
        padding: 18px 8px 12px 8px;
        background: #0a1626;
        border-bottom: 1.5px solid #1e293b;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
        margin-bottom: 0;
        box-shadow: 0 2px 18px #00eaff33, 0 0 0 2px #0ff2  inset;
        position: relative;
        overflow: hidden;
        text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff;
        animation: neon-flicker 2.8s infinite linear alternate;
}

/* 电子科技风流动高光动画 */
.sidebar-title::before {
        content: '';
        position: absolute;
        left: -60%;
        top: 0;
        width: 60%;
        height: 100%;
        background: linear-gradient(120deg, transparent 60%, #fff 90%, transparent 100%);
        opacity: 0.22;
        filter: blur(2px);
        animation: sidebar-title-glow 2.8s linear infinite;
        pointer-events: none;
}
.sidebar-title::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px 14px 0 0;
        box-shadow: 0 0 16px 2px #00eaff99, 0 0 32px 4px #00eaff44;
        opacity: 0.18;
        pointer-events: none;
}

@keyframes sidebar-title-glow {
        0% { left: -60%; }
        100% { left: 120%; }
}

@keyframes neon-flicker {
        0%, 100% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        2% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        8% { text-shadow:
            0 0 12px #00eaff,
            0 0 24px #00eaff,
            0 0 48px #00eaff,
            0 0 4px #fff; }
        10% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        12% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        18% { text-shadow:
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 64px #00eaff,
            0 0 8px #fff; }
        20% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        22% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        28% { text-shadow:
            0 0 12px #00eaff,
            0 0 24px #00eaff,
            0 0 48px #00eaff,
            0 0 4px #fff; }
        30% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        32% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        38% { text-shadow:
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 64px #00eaff,
            0 0 8px #fff; }
        40% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        42% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        48% { text-shadow:
            0 0 12px #00eaff,
            0 0 24px #00eaff,
            0 0 48px #00eaff,
            0 0 4px #fff; }
        50% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        52% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        58% { text-shadow:
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 64px #00eaff,
            0 0 8px #fff; }
        60% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        62% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        68% { text-shadow:
            0 0 12px #00eaff,
            0 0 24px #00eaff,
            0 0 48px #00eaff,
            0 0 4px #fff; }
        70% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        72% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        78% { text-shadow:
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 64px #00eaff,
            0 0 8px #fff; }
        80% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        82% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        88% { text-shadow:
            0 0 12px #00eaff,
            0 0 24px #00eaff,
            0 0 48px #00eaff,
            0 0 4px #fff; }
        90% { text-shadow:
            0 0 2px #00eaff,
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 1px #fff; }
        92% { text-shadow:
            0 0 8px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 2px #fff; }
        98% { text-shadow:
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 64px #00eaff,
            0 0 8px #fff; }
}
/* 刷新按钮 loading 动画微调 */
#refreshIcon svg {
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
/* 新增数据弹窗最大高度和滚动条 */
 .modal {
    background: rgba(255,255,255,0.98);
    border-radius: 14px;
    box-shadow: 0 8px 40px 0 rgba(40,60,120,0.18), 0 1.5px 8px #b0b8d8;
    min-width: 340px;
    max-width: 96vw;
    position: relative;
    animation: popIn 0.25s cubic-bezier(.4,2,.6,1.2);
    border: 1.5px solid #e3eafc;
    backdrop-filter: blur(0.5px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-bottom: 0;
    max-height: calc(60vh + 128px);
    min-height: calc(60vh + 128px);
    overflow: hidden;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 36px 0 36px;
    min-height: 48px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    z-index: 2;
}
.modal-title {
    font-size: 21px;
    color: #1976d2;
    font-weight: 600;
    letter-spacing: 1px;
}
.modal .close {
    position: static;
    font-size: 24px;
    color: #b0b8d8;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 16px;
}
.modal .close:hover {
    color: #1976d2;
}
.modal-form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
}
.modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 36px 0 36px;
    min-height: 0;
    max-height: calc(60vh - 48px - 64px);
    /* header 48px, footer 64px，内容超出时滚动 */
}
.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 16px 36px 16px 36px;
    /* 移除border-radius和background，紧凑布局，防止溢出 */
    box-sizing: border-box;
}
.modal-footer button {
    padding: 8px 22px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    background: #1976d2;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #e3eafc;
}
.modal-footer button.cancel {
    background: #b0b8d8;
}
.modal-footer button.cancel:hover {
    background: #8a94b8;
}
.modal-footer button:hover:not(.cancel) {
    background: #1251a3;
}
.modal-insert {
    /* 保证继承.modal的样式即可，无需重复max-height/overflow */
}
/* style.css - 从 index.html 分离的样式 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f6fa;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    height: 100vh;
}
.sidebar {
    background: #fff;
    box-shadow: 2px 0 8px #e0e0e0;
    padding: 24px 8px 24px 16px;
    min-width: 300px;
    max-width: 30vw;
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overflow-x: auto;
    white-space: nowrap;
    transition: width 0.3s;
}
.sidebar-list-block {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1.5px solid #e0e0e0;
    padding-bottom: 8px;
    margin-bottom: 0;
}
.sidebar-actions-block {
    flex-shrink: 0;
    background: #fff;
    box-shadow: none;
    padding: 18px 0 8px 0;
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.sidebar .table-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 100%;
}
.sidebar .table-btn {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 12px;
    background: #f7f9fc;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: left;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.sidebar .table-btn.active, .sidebar .table-btn:hover {
    background: #e3eafc;
    color: #1976d2;
    box-shadow: 0 2px 8px #e3eafc;
}
.sidebar .sidebar-actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 24px 20px;
    min-width: 0;
}
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.main-header h2 {
    margin: 0;
    font-size: 22px;
    color: #1976d2;
    margin-left: 10px;
}
.main-header .main-actions {
    display: flex;
    gap: 10px;
}
.main-header .main-actions button {
    padding: 7px 16px;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    background: #1976d2;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.main-header .main-actions button:hover {
    background: #1251a3;
}
.table-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px #e0e0e0;
    padding: 0;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.table-scroll {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 60vh;
    min-height: 200px;
}
table.data-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
    background: #fff;
}
table.data-table th, table.data-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    text-align: left;
    font-size: 15px;
}
table.data-table th {
    background: #f7f9fc;
    color: #1976d2;
    position: sticky;
    top: 0;
    z-index: 2;
}
table.data-table tr:hover td {
    background: #f0f4ff;
}
.sql-preview-bar {
    display: flex;
    align-items: center;
    margin-top: 18px;
    gap: 10px;
}
.sql-preview {
        flex: 1;
        background: #23272e;
        color: #e3eafc;
        font-family: 'Fira Mono', 'Consolas', monospace;
        font-size: 15px;
        border-radius: 6px;
        padding: 10px 14px;
        overflow: hidden;
        white-space: nowrap;
        max-width: 100%;
        min-height: 36px;
        position: relative;
        z-index: 1;
}

/* 彩色动态1px跑马灯外框 */
.sql-preview::after {
        content: '';
        position: absolute;
        left: 0; top: 0; right: 0; bottom: 0;
        z-index: 2;
        border-radius: 6px;
        padding: 0;
        pointer-events: none;
        border: 1px solid transparent;
        /* 用mask+背景实现1px彩色边框 */
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        background:
            linear-gradient(90deg,
                #ff3cac 0%, #784ba0 10%, #2b86c5 20%, #42e695 30%, #ffb86c 40%, #ff3cac 50%,
                #784ba0 60%, #2b86c5 70%, #42e695 80%, #ffb86c 90%, #ff3cac 100%
            );
        background-size: 200% 100%;
        background-position: 0 0;
        animation: sql-border-marquee 3s linear infinite;
        /* 只显示1px边框 */
        box-sizing: border-box;
        pointer-events: none;
}

@keyframes sql-border-marquee {
        0% { background-position: 0% 0; }
        100% { background-position: 100% 0; }
}

/* 彩色无缝跑马灯背景 */
.sql-preview::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 0;
    border-radius: 6px;
    background: linear-gradient(90deg,
        #ff3cac 0%, #784ba0 10%, #2b86c5 20%, #42e695 30%, #ffb86c 40%, #ff3cac 50%,
        #784ba0 60%, #2b86c5 70%, #42e695 80%, #ffb86c 90%, #ff3cac 100%
    );
    background-size: 200% 100%;
    opacity: 0.22;
    filter: blur(2px) brightness(1.2);
    animation: sql-bg-marquee 8s linear infinite;
    pointer-events: none;
}

@keyframes sql-bg-marquee {
    0% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

/* 跑马灯动画容器 */
.sql-preview-marquee {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: sql-marquee 12s linear infinite;
}

@keyframes sql-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.copy-btn {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 7px 16px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.copy-btn:hover {
    background: #1251a3;
}
.modal-mask {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(30,40,60,0.22);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s;
    backdrop-filter: blur(2.5px);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal {
    background: rgba(255,255,255,0.98);
    border-radius: 14px;
    box-shadow: 0 8px 40px 0 rgba(40,60,120,0.18), 0 1.5px 8px #b0b8d8;
    min-width: 340px;
    max-width: 96vw;
    padding: 32px 36px 26px 36px;
    position: relative;
    animation: popIn 0.25s cubic-bezier(.4,2,.6,1.2);
    border: 1.5px solid #e3eafc;
    backdrop-filter: blur(0.5px);
}
@keyframes popIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal h3 {
    margin: 0 0 18px 0;
    font-size: 21px;
    color: #1976d2;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
}
.modal label {
    color: #2a2a2a;
    font-size: 15px;
    margin-bottom: 6px;
}
.modal input, .modal select {
    background: #f7f9fc;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 14px;
    padding: 8px 12px;
    transition: border 0.2s;
}
.modal input:focus, .modal select:focus {
    border: 1.5px solid #1976d2;
    outline: none;
    background: #e3eafc;
}
.modal .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}
.modal .modal-actions button {
    padding: 8px 22px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    background: #1976d2;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #e3eafc;
}
.modal .modal-actions button.cancel {
    background: #b0b8d8;
}
.modal .modal-actions button.cancel:hover {
    background: #8a94b8;
}
.modal .modal-actions button:hover:not(.cancel) {
    background: #1251a3;
}
.modal .close {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 24px;
    color: #b0b8d8;
    cursor: pointer;
    transition: color 0.2s;
}
.modal .close:hover {
    color: #1976d2;
}
@media (max-width: 600px) {
    .modal {
        min-width: 90vw;
        padding: 18px 6vw 18px 6vw;
    }
}
@media (max-width: 900px) {
    .container { flex-direction: column; }
    .sidebar { max-width: 100vw; min-width: 0; width: 100vw; }
    .main { padding: 16px; }
}

/* 分页器独立样式 */
#paginationBar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0 0;
    padding: 0 0 8px 0;
    background: none;
    position: relative;
    z-index: 2;
}
#paginationBar button {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 14px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
#paginationBar button:disabled {
    background: #b0b8d8;
    cursor: not-allowed;
}
#paginationBar input[type='number'] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 15px;
    width: 40px;
    margin: 0 2px;
    text-align: center;
}
#paginationBar span {
    font-size: 15px;
    color: #1976d2;
}

/* 编辑数据弹窗内容左对齐 */
#insert-form-modal .modal-body,
#edit-form-modal .modal-body,
.modal-body {
    text-align: left;
}
#insert-form-modal .modal-body > div,
#edit-form-modal .modal-body > div,
.modal-body > div {
    justify-content: flex-start !important;
    text-align: left !important;
}
#insert-form-modal label,
#edit-form-modal label,
.modal-body label {
    text-align: left !important;
}
