/* 详情页导出按钮样式 */

/* 桌面端详情标题行布局 */
.detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.detail-title-row h2 {
    flex: 1;
    margin: 0;
}

/* 导出按钮特殊样式 - 修复颜色冲突问题 */
.detail-action-btn[id="detailExportBtn"] {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1); /* 浅蓝色背景 */
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    padding: 0px !important;
}

.detail-action-btn[id="detailExportBtn"]:hover {
    background: rgba(59, 130, 246, 0.2); /* 稍深的蓝色背景 */
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.3);
}