body {
  font-family: Arial, sans-serif;
}

.top-bar {
  background-color: #990000;
}

.site-title {
  color: white;
  font-size: 34px;
  font-weight: bold;
}

.title-link {
  color: white;
  text-decoration: none;
}

.title-link:hover {
  color: white;
  text-decoration: none;
}

.current-user-link {
  color: white;
  text-decoration: none;
}

.current-user-link:hover {
  color: white;
  text-decoration: underline;
}

.top-user {
  color: white;
}

.top-username {
  color: white;
}

.profile-icon {
  font-size: 48px;
  line-height: 1;
}

.section-title {
  color: #990000;
}

.howl-textarea {
  min-height: 120px;
  resize: none;
}

.howl-button {
  background-color: #990000;
  color: white;
  border: 1px solid #990000;
}

.howl-button:hover {
  background-color: #7a0000;
  color: white;
  border-color: #7a0000;
}

#howlList {
  min-height: 40px;
}

.howl-card {
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background-color: white;
}

.howl-card:last-child {
  margin-bottom: 0;
}

.howl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.howl-name {
  font-weight: bold;
  font-size: 18px;
}

.howl-user-link {
  color: #222222;
  text-decoration: none;
}

.howl-user-link:hover {
  text-decoration: underline;
  color: #990000;
}

.howl-handle {
  color: #666666;
  font-size: 16px;
  margin-left: 8px;
}

.howl-time {
  color: #666666;
  font-size: 14px;
  white-space: nowrap;
}

.howl-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.top-avatar,
.profile-avatar,
.feed-avatar {
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.top-avatar {
  width: 40px;
  height: 40px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
}

.feed-avatar {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .site-title {
    font-size: 28px;
  }

  .top-user {
    position: static !important;
    margin-top: 8px;
    justify-content: center;
  }

  .top-bar .container {
    flex-direction: column;
  }

  .howl-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .howl-text {
    font-size: 16px;
  }
}