/* ================================
   农房登记业务办理系统 - 样式表
   ================================ */

/* NProgress 进度条样式 */
#nprogress .bar {
    background: #22c55e;
    height: 3px;
}
#nprogress .peg {
    box-shadow: 0 0 10px #22c55e, 0 0 5px #22c55e;
}

/* 响应式表格 */
@media (max-width: 768px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* 全局字体放大 */
body {
    font-size: 16px !important;
}
.text-sm {
    font-size: 15px !important;
}
.text-xs {
    font-size: 14px !important;
}
.text-base {
    font-size: 18px !important;
}
.text-lg {
    font-size: 20px !important;
}
.text-xl {
    font-size: 22px !important;
}
input, select, button {
    font-size: 16px !important;
}

/* 展开/收起按钮样式 */
.toggle-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle-btn svg {
    transition: transform 0.3s ease;
}
.rotate-180 {
    transform: rotate(180deg);
}

/* 核查结果弹窗 */
#checkModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
}
#checkModal .modal-content {
    background: white;
    padding: 25px 35px;
    border-radius: 10px;
    min-width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 999999 !important;
}
#modalIcon {
    font-size: 45px;
    margin-bottom: 12px;
}
#modalTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}
#modalDesc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
#modalBtn {
    background: #1677ff;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
#modalBtn:hover {
    background: #0958d9;
}

/* 隐藏默认样式 */
.hidden {
    display: none !important;
}
