/* Forum styles for efp-guru */
.table-forum {
  border: 1px solid #e9ecef;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse;
}
.table-forum th, .table-forum td {
  border: 1px solid #e9ecef;
  padding: 0.5rem 0.75rem;
  font-size: 1.1rem;
}
.table-forum thead th {
  background: #f8f9fa;
  font-weight: bold;
}
.table-forum tbody tr:nth-of-type(odd) {
  background-color: #f6f6f6;
}
.table-forum tbody tr:hover {
  background-color: #e9ecef;
}
.forum-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
}
.forum-controls a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
}
.forum-controls a.btn-secondary {
  background: #0073aa;
}
.forum-controls a.btn-secondary:hover {
  background: #005a87;
}
.forum-controls a.btn-success {
  background: #28a745;
}
.forum-controls a.btn-success:hover {
  background: #1e7e34;
}
form button.btn-success {
  background: #28a745;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
form button.btn-success:hover {
  background: #1e7e34;
}
.forum-controls button.btn-info {
  background: #17a2b8;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
.forum-controls button.btn-warning {
  background: #ffc107;
  color: #212529;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
.forum-controls button.btn-info:hover {
  background: #138496;
}
.forum-controls button.btn-warning:hover {
  background: #e0a800;
}
.forum-controls button.btn-info,
.forum-controls button.btn-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.forum-controls button.btn-primary {
  background: #0056b3;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.forum-controls button.btn-primary:hover {
  background: #003d80;
}
.forum-controls button.btn-dark {
  background: #343a40;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.forum-controls button.btn-dark:hover {
  background: #23272b;
}
table.forum-board-table th,
table.forum-thread-table th {
    background: #222;
    color: rgb(255, 255, 255);
    font-weight: normal;
    border: 1px solid #222;
}
table.forum-board-table tr,
table.forum-thread-table tr {
    border: 1px solid #ddd;
}
