.tc-modal-details {
  padding: 8px 4px;
}
.tc-details-section {
  margin-bottom: 24px;
}
.tc-details-section:last-child {
  margin-bottom: 0;
}
.tc-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tc-section-title i {
  color: #e31837;
  margin-right: 8px;
  font-size: 1rem;
}
.tc-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.tc-detail-item {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}
.tc-detail-item:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.tc-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(227, 24, 55, 0.08);
  color: #e31837;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-item-content {
  flex-grow: 1;
}
.tc-item-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.tc-item-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  word-break: break-word;
}
.tc-detail-item-full {
  grid-column: 1 / -1;
}
.tc-download-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #e31837;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border: none;
  color: #ffffff !important;
}
.tc-download-btn:hover {
  background: #b30f25;
  transform: translateY(-1px);
}
.tc-download-btn i {
  margin-right: 6px;
}
