/*
 * 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.
 */

@layer reset, base, components;

@layer components {
  button, .button {
    display: inline-flex;
    border-width: 2px;
    border-radius: 1lh;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: .35rem 1.5rem;
    text-decoration: none; 
    border-color: rgb(76 84 223);
    color: rgb(76 84 223);

    &:hover {
      border-color: rgb(36 38 199);
      background-color: rgb(36 38 199);
      color: white;
    }
  }

  .primary.button {
    border-color: rgb(76 84 223);
    background-color: rgb(76 84 223);
    color: white;

    &:hover {
      border-color: rgb(36 38 199);
      background-color: rgb(36 38 199);
    }
  }
}
