/* 详情页特有的样式 */

/* 基础布局 */
.detail-container {
    padding: 1.5rem;
}

/* 基本信息卡片样式 */
.info-table {
    width: 100%;
}

.info-table td {
    padding: 0.75rem 0;
    border: none;
}

.info-table td:first-child {
    color: #666;
    width: 120px;
}

.info-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

/* 状态标签样式 */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: normal;
    font-size: 12px;
}

.status-badge.urgent {
    background-color: #dc3545;
    color: #fff;
}

.status-badge.warning {
    background-color: #ffc107;
    color: #000;
}

/* 文件上传区域样式 */
.file-upload-area {
    border: 1px dashed #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-upload-area:hover {
    border-color: #4B6CB7;
    background-color: rgba(75,108,183,0.05);
}

/* 已上传文件样式 */
.uploaded-file {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: #fff;
}

.file-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.file-info {
    flex-grow: 1;
}

/* 时间线样式 */
.timeline {
    position: relative;
    margin: 0 0 1rem 1rem;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    position: absolute;
    left: -8px;
    width: 16px;
    height: 16px;
    background-color: #4B6CB7;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #4B6CB7;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

/* 沟通记录样式 */
.communication-records {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.communication-item {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.communication-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #4B6CB7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* 证据清单样式 */
.evidence-item {
    position: relative;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 1rem;
}

.evidence-item.linked {
    border-left: 3px solid #4B6CB7;
}

.evidence-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* 分析面板样式 */
.analysis-panel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.analysis-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 进度条样式 */
.progress-slim {
    height: 6px;
    border-radius: 3px;
    margin: 8px 0;
}

/* 标签页样式 */
.nav-tabs .nav-link {
    border: none;
    padding: 0.75rem 1.5rem;
    color: #666;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: #4B6CB7;
    background: none;
    border-bottom: 2px solid #4B6CB7;
}

/* 模态框样式 */
.modal-content {
    border: none;
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 1rem 1.5rem;
} 