.tr-container {
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem;
  max-width: 100%;
  overflow-x: auto;
}
.tr-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a4365;
}
.tr-scroll {
  overflow-x: auto;
}
.tr-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.tr-table th, .tr-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.tr-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}
.tr-table td.text-right {
  text-align: right;
}
.tr-table tr:hover {
  background-color: #f0f4f8;
}
