.behavior-module {
    padding: 20px;
    background-color: #0a1a2a;
    color: #fff;
    height: 100%;
    font-family: 'Microsoft YaHei', sans-serif;
}

.module-header {
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: #1a2b50;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.module-header h2 {
    margin: 0;
    font-size: 18px;
    color: #4fc3f7;
    font-weight: 500;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-item label {
    color: #b0bec5;
    font-size: 14px;
}

select, input[type="date"] {
    padding: 6px 12px;
    background-color: #1a2b50;
    border: 1px solid rgba(79,195,247,0.15);
    border-radius: 4px;
    color: #fff;
    height: 32px;
}

.behavior-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: #1a2b50;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(79,195,247,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #4fc3f7;
}

.stat-label {
    font-size: 16px;
    color: #b0bec5;
    white-space: nowrap;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #4fc3f7;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(79, 195, 247, 0.3);
}

.stat-label {
    font-size: 14px;
    color: #b0bec5;
    letter-spacing: 1px;
}

.behavior-table {
    background: rgba(15,28,60,0.6);
    border: 1px solid rgba(79,195,247,0.15);
    border-radius: 8px;
    padding: 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

th {
    background: rgba(15,28,60,0.9);
    padding: 10px 12px;
    text-align: left;
    color: #4fc3f7;
    font-weight: 600;
    border-bottom: 1px solid rgba(79,195,247,0.2);
}

td {
    padding: 10px 12px;
    color: #c8dae6;
    border-bottom: 1px solid rgba(79,195,247,0.08);
    background: rgba(15,28,60,0.4);
}

tr:nth-child(even) td {
    background: rgba(15,28,60,0.6);
}

tr:hover td {
    background: rgba(79,195,247,0.08);
}

.btn {
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-search {
    background-color: #4fc3f7;
    color: white;
    height: 32px;
}

.btn-search:hover {
    background-color: #5fd3ff;
}

.btn-detail {
    background-color: rgba(79,195,247,0.15);
    color: white;
}

.btn-detail:hover {
    background-color: #3d4a5e;
}

.btn-process {
    background-color: #ff4d4f;
    color: white;
}

.btn-process:hover {
    background-color: #ff7875;
}

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.status-0 {
    background-color: rgba(245, 34, 45, 0.1);
    color: #f5222d;
    border: 1px solid rgba(245, 34, 45, 0.3);
}

.status-1 {
    background-color: rgba(82, 196, 26, 0.1);
    color: #52c41a;
    border: 1px solid rgba(82, 196, 26, 0.3);
}

.thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.dialog-content {
    background-color: #1a2b50;
    border-radius: 4px;
    padding: 20px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79,195,247,0.15);
    display: flex;
    flex-direction: column;
}

.detail-info {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.detail-info h3 {
    color: #4fc3f7;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.detail-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.detail-image {
    max-width: 100%;
    margin: 15px 0;
    border-radius: 4px;
    border: 1px solid rgba(79,195,247,0.15);
}