/* 진행률 표시 컨테이너 스타일 */
#progressContainer {
  display: block !important;
  visibility: visible !important;
  margin-bottom: 1rem;
}

/* 진행률 바 스타일 */
#ExcelTranslationProgress {
  height: 1.2rem;
  transition: width 0.3s ease-in-out;
}

/* 진행 상태 카드 스타일 */
.status-card {
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-card .card-header {
  padding: 0.75rem 1rem;
  background-color: transparent;
  border-bottom-width: 2px;
}

.status-card.primary-border .card-header {
  border-bottom-color: var(--bs-primary);
  color: var(--bs-primary);
}

.status-card.success-border .card-header {
  border-bottom-color: var(--bs-success);
  color: var(--bs-success);
}

.status-card .card-body {
  padding: 1rem;
}

/* 결과 카드 스타일 */
#resultCard {
  display: block;
}

#resultCard .table {
  margin-bottom: 0;
}

#resultCard .table th {
  font-weight: 500;
  color: var(--bs-gray-600);
}

/* 다운로드 버튼 컨테이너 스타일 */
.download-section {
  background-color: var(--bs-light);
  border-radius: 6px;
  padding: 1rem;
}

/* 진행 상태 메시지 스타일 */
#progressText {
  color: var(--bs-gray-700);
  font-size: 0.9rem;
}

/* 취소 버튼 스타일 */
#cancelTranslationBtn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

/* 상태 메시지 스타일 */
#translationStatus {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
}

/* 푸터와의 간격 조정 */
.excel-translation-container {
  margin-bottom: 3rem;
}

/* 컨텐츠 영역 마진 조정 */
.content-container.mt-4 {
  margin-bottom: 5rem;
}
