/* 基本样式 */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.navbar {
    margin-bottom: 20px;
}

section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.table {
    margin-top: 20px;
}

/* 卡片样式 */
.card {
    margin-bottom: 20px;
}

/* 二维码样式 */
#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* 搜索框样式 */
.input-group {
    max-width: 300px;
}

/* 模态框样式 */
.modal-body {
    padding: 20px;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .input-group {
        max-width: 100%;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* 状态标签样式 */
.status-normal {
    color: green;
    font-weight: bold;
}

.status-warning {
    color: orange;
    font-weight: bold;
}

.status-danger {
    color: red;
    font-weight: bold;
}