
body { 
  min-height: 100vh;
  padding: 1.5rem;
  background: linear-gradient(180deg, #74dbee, #8fdde9);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


header {
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

header h1.h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  overflow: hidden;
}

.card-body {
  padding: 1rem 1.25rem;
}

.card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: all 0.15s ease-out;
}

#feed,
#howls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.howl-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  background: #fff;
  width: 100%;
  max-width: 600px;   
  min-height: 100px;  
}

h2.h5 {
  font-weight: 600;
  letter-spacing: 0.02em;
}


label.form-label {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

#composer textarea,
#howlText,
textarea.form-control {
  width: 100%;
  resize: vertical;
}

input.form-control,
textarea.form-control {
  border-radius: 0.75rem;
  border: 1px solid #cbd5f5;
}

input.form-control:focus,
textarea.form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25);
}


#me .btn.btn-link {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  background-color: rgb(173, 196, 224);
}

#me .me.btn {
  background-color: #6f42c1;
  border-color: #6f42c1;
  color: #fff;
}

.btn-primary {
  background-color: #6366f1;
  border-color: #6366f1;
}

.btn-primary:hover {
  background-color: #4f46e5;
  border-color: #4f46e5;
}

.btn-secondary {
  background-color: #0f172a;
  border-color: #0f172a;
}

.btn-secondary:hover {
  background-color: #020617;
  border-color: #020617;
}

.btn-outline-primary {
  border-radius: 999px;
  padding-inline: 0.9rem;
}

#composer textarea {
  width: 100%;
}
