/* === Cards === */
.card {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 1rem;
  text-align: justify;
}

/* === Tables === */
table.table_report {
  border: 3px solid #00d0e0;
  border-collapse: collapse;
  font-family: arial, sans-serif;
  width: 100%;
  margin-bottom: 1rem;
  background: #aaaaaa;
}

table.table_report td,
table.table_report th {
  border: 1px solid grey;
  text-align: left;
  padding: 8px;
  background: #aaaaaa;
}

/* === Definition Lists === */
.dict dt {
  font-weight: bold;
}

.dict dt,
.dict dd {
  display: inline-block;
  margin: 0;
}

.dict dt:after {
  content: ": ";
}

/* === Utility Text === */
.trans_progress {
  font-size: 0.875em;
  color: #6c757d;
}

/* === Buttons === */
button, .run_btn, .btn {
  display: inline-block;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.6em 1.2em;
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease;
}

.run_btn_container {
  text-align: center;
  padding: 3em;
}

button:hover, .btn:hover, .run_btn:hover {
  background: #005fa3;
}

/* === Footer === */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}