/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Rich Editor Toolbar */
.rich-toolbar-btn {
  @apply text-[11px] font-semibold text-slate-600 bg-slate-50 border border-slate-200
         px-2 py-1 rounded transition-all duration-150 hover:bg-indigo-50 hover:text-indigo-700
         hover:border-indigo-200 min-w-[28px] text-center flex items-center justify-center gap-0.5;
}
.rich-toolbar-btn.active {
  @apply bg-indigo-100 text-indigo-700 border-indigo-300 shadow-sm;
}
