/* Basic styling for SupportHub */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #212529;
}

header {
  background-color: #343a40;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

header nav a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}

main {
  padding: 20px;
}

.filter-form {
  margin-bottom: 20px;
}

.ticket-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.ticket-table th, .ticket-table td {
  border: 1px solid #dee2e6;
  padding: 8px;
  text-align: left;
}

.ticket-table th {
  background-color: #e9ecef;
}

.message {
  border: 1px solid #dee2e6;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.message.inbound {
  background-color: #fff;
}

.message.outbound {
  background-color: #f1f3f5;
}

.suggestion {
  border: 1px solid #dee2e6;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: #fafbfd;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 6px 12px;
  margin-top: 4px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0069d9;
}

form {
  margin-bottom: 10px;
}