/* Subtle and thin composer */
#message-composer {
  background-color: transparent !important;
  border: 1px solid hsl(var(--border)) !important;
  /*border-radius: 8px !important; */
}

/* Apply theme background to login page */
body {
  background-color: hsl(var(--background)) !important;
  color: hsl(var(--foreground)) !important;
}

/* Left panel */
.grid.min-h-svh > div:first-child {
  background-color: hsl(var(--background)) !important;
}

/* Login button - use primary color */
button.border.border-input {
  background-color: hsl(var(--primary)) !important;
  color: hsl(var(--primary-foreground)) !important;
  border-color: hsl(var(--primary)) !important;
}

button.border.border-input:hover {
  background-color: hsl(var(--accent)) !important;
  border-color: hsl(var(--accent)) !important;
}

/* Login title */
h1.text-2xl {
  color: hsl(var(--foreground)) !important;
}