/* 前端样式 */
.enhanced-report-container {
    margin: 20px 0;
    text-align: center;
}

.enhanced-report-btn {
    background: #1e88e5;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.enhanced-report-btn:hover {
    background: #1565c0;
}

.enhanced-report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enhanced-report-modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
}

.enhanced-report-modal h3 {
    margin-top: 0;
    color: #1e88e5;
}

.enhanced-report-reason {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.enhanced-report-details {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 80px;
}

/* 后台样式 */
.wrap h1 {
    color: #1e88e5;
}

.wp-list-table th {
    background: #1e88e5;
    color: white;
}