body {
  background-color: #f8f9fa;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.howl-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.howl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.howl-avatar {
  cursor: pointer;
}

.howl-username {
  cursor: pointer;
  color: #0d6efd;
  text-decoration: none;
}

.howl-username:hover {
  text-decoration: underline;
}

.howl-text {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.howl-time {
  font-size: 0.875rem;
  color: #6c757d;
}

.user-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: #e9ecef;
  border-radius: 1rem;
  text-decoration: none;
  color: #212529;
  transition: background-color 0.2s;
}

.user-badge:hover {
  background-color: #dee2e6;
  color: #212529;
}

.user-badge img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

#charCount {
  font-weight: bold;
}

.card {
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary {
  background-color: red;
  border-color: red;
}

.btn-primary:hover {
  background-color: red;
  border-color: red;
}

.bg-primary {
  background-color: red !important;
}