.checkbox-row {
    display: flex;
    gap: 20px; /* 控制每个复选框之间的间距 */
    margin-bottom: 10px;
    flex-wrap: wrap; /* 如果屏幕不够宽，会自动换行 */
}

.tableCircle {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin: auto;
}

#data-group th {
    border: 0.1px solid #0000001f; /* 设置每个单元格的边框 */

}

#data-group td {
    border-left:0px;
    border-bottom: 0px;
}

#data-table td {
    border-left:0px;
    border-bottom: 0px;
}

#data-table th {
    border:0.1px solid #0000001f; /* 设置每个单元格的边框 */

}
/* 添加唯一的 ID 前缀 */
.styled-form {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 10px 0;
    padding: 20px;

    display: flex; /* 使用 Flexbox */
    flex-wrap: wrap; /* 允许换行 */
    justify-content: space-between; /* 在主轴上分配空间 */
}

.styled-form div {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 5px; /* 添加一些间距 */
    flex: 1; /* 使 div 在可用空间中平等分配 */
}

.styled-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.styled-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.styled-form select:focus {
    border-color: #007BFF;
    outline: none;
}

.styled-form button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.styled-form button:hover {
    background-color: #0056b3;
}


/* 设置父容器的样式以实现水平排列 */
.subviocontainer {
    display: flex;
    justify-content: center;  /* 水平居中 */
    align-items: flex-start;  /* 顶部对齐 */
    width: 100%;
    margin: 0 auto;
}

/* 每个图表的div样式 */
.plot-div {
    width: 30%;
    height: 400px;
    margin: 0 10px;
}

.modal-dialog {
    width: 95%;        /* 设置宽度为90% */
    max-height: 80%;   /* 设置最大高度为80% */
    top: 15%;          /* 设置距离顶部的距离 */
    margin: auto;      /* 垂直居中 */
    height: auto;      /* 高度自动调整 */
}

.modal-content {
    height: auto;      /* 内容高度自动调整 */
}

.btn-circle {
    font-family: Arial,serif;
    outline: none;
    border: solid 0.75px white;
    border-radius: 10px;
    width: 16px;        /* 设置宽度 */
    height: 16px;       /* 设置高度 */
    padding: 0;         /* 去掉内边距 */
    text-align: center; /* 居中对齐 */
    background-color: #fbcf25; /* 设置背景色 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* 添加阴影效果 */
    transition: transform 0.2s, box-shadow 0.2s; /* 添加过渡效果 */
}

.btn-circle-grey {
    font-family: Arial,serif;
    outline: none;
    width: 12px;        /* 设置宽度 */
    height: 12px;       /* 设置高度 */
    padding: 0;         /* 去掉内边距 */
    text-align: center; /* 居中对齐 */
    background-color: #fbcf25; /* 设置背景色 */
}

.btn-circle:hover {
    transform: scale(1.2); /* 放大效果 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* 增强阴影效果 */
}
.btn-circle:focus {
    outline: none; /* 去掉获得焦点时的轮廓 */
}
.filterdiv{
    max-width: 90% !important;
    padding: 2px !important;
    box-shadow: none !important
}

#ceAgingTable{
    border: 0.1px solid #0000001f;
}
#ceAgingTable th,td{
    border: 0.1px solid #0000001f;
}


.form-container {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin: auto;
}

label.section-title {
    display: block;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0056b3;
    font-size: 16px;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-row label {
    background-color: #eef6ff;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.checkbox-row label:hover {
    background-color: #d0e8ff;
    transform: scale(1.02);
}

input[type="checkbox"] {
    margin-right: 8px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;;
    margin: 0 !important;;
}

.form-section {
    flex: 1;
    min-width: 300px; /* 控制缩放行为 */
    padding: 0 !important;;
    margin: 0 !important;;
}

.checkbox-row {
    display: flex;
    padding: 0 !important;
    margin: 0 !important;;
    flex-wrap: wrap;
}

/* 定义闪光效果 */
.flash-logo {
    display: inline-block;
    font-size: 12px;
    color: #d1b72c;
    animation: flash 1.5s infinite;
}

/* 动画效果 */
@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.badge-new {
    background-color: #5999ec;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    margin-left: 5px;
    border-radius: 3px;
    vertical-align: middle;
    animation: pulse-strong 1.5s infinite;
}

.badge-new-2 {
    color: #5999ec;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    margin-left: 5px;
    border-radius: 3px;
    vertical-align: super;
    animation: pulse-strong 1.5s infinite;
}

.divider {
    height: 1px;
    margin: 5px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

@keyframes pulse-strong {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.new-bs-info {
    animation: border-top-blink 1.5s infinite;
}
@keyframes border-top-blink {
    0% { border-top-color: #00AADC; }
    50% { border-top-color: #f5d819; }
    100% { border-top-color: #00AADC; }
}

.new-div {
    position: absolute;
    top: 8%;
    right: 1.5%;
    transform: translate(0, -20%);
}

#myModal2 {
    width: 75%;
    margin: 0 auto;         /* 水平居中容器 */
    text-align: center;     /* 文字居中 */
}

.modal-footer {
    padding: 5px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

#download-button{
    background-color: #5cb85c;
}