/* 파일첨부 영역 배경색 강제 수정 */

/* 가장 강력한 셀렉터로 파일첨부 th 배경 수정 - 보라색 톤 */
div.file-upload-container table.tb1 th,
.file-upload-container .tb1 th,
.file-upload-container th,
table.tb1 th.file-upload-header {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    border: none !important;
}

/* 파일첨부 아이콘과 텍스트도 흰색으로 강제 */
.file-upload-container th i,
.file-upload-container th .fa {
    color: white !important;
}

/* 혹시 모를 인라인 스타일도 덮어쓰기 */
.file-upload-container[style] th {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
} 