/* --- 1. POST BUTTON COLOR, TEXT ("Tŵt!"), & HOVER STATES --- */
.compose-form__actions .button,
.compose-form__publish-button-wrapper > button {
  background-color: #e95a4e !important;
  background-image: none !important;
  position: relative !important;
  color: transparent !important;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease !important;
  cursor: pointer !important;
}

/* Mouseover / Hover Effect */
.compose-form__actions .button:hover,
.compose-form__publish-button-wrapper > button:hover {
  background-color: #d44337 !important; /* Slightly darker shade on hover */
  transform: translateY(-1px) !important; /* Subtle lift */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important; /* Slight drop shadow */
}

/* Click / Active Effect */
.compose-form__actions .button:active,
.compose-form__publish-button-wrapper > button:active {
  background-color: #b83227 !important;
  transform: translateY(1px) !important; /* Pressed down effect */
  box-shadow: none !important;
}

/* Hide TangerineUI SVG icons and default text spans */
.compose-form__actions .button span,
.compose-form__actions .button svg,
.compose-form__publish-button-wrapper > button span,
.compose-form__publish-button-wrapper > button svg {
  display: none !important;
}

/* Centered "Tŵt!" text overlay */
.compose-form__actions .button::before,
.compose-form__publish-button-wrapper > button::before {
  content: "Tŵt!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff !important;
  font-weight: bold;
  white-space: nowrap;
  transition: transform 0.1s ease !important;
}

/* --- 2. LOGO & SEARCH MARGIN --- */
.compose-panel {
  background: url("https://toot.wales/system/media_attachments/files/115/935/257/032/405/244/original/77c6b9205015fe92.png") no-repeat !important;
}

.search {
  margin-top: 80px;
}

/* --- 3. NAVIGATION ACTIVE LINKS --- */
.column-link.active,
.column-link.active:hover,
.column-link:focus,
.column-link:hover {
  color: #e95a4e !important;
}

