/*
 * 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.
 */
body {
  font-family: "Google Sans", sans-serif;
  color: #222222;
  background-color: #F7F7F7;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.btn-selecta {
  color: #f4f4f4;
  padding: 0.7rem 2rem;
  font-weight: 700;
  border-radius: 7px;
  background-color: #F6E865;
  color: #7033e8ff;
  font-size: 14px;
  border: none;
  cursor: pointer;

  &:hover {
    color: #f4f4f4;
    background-color: #7033e8ff;
  }
}

a {
  text-decoration: none;
}

.trix-content {
  line-height: 1.3;
  font-size: clamp(14px, 3vw, 1.2rem);
}

.mt-0 {
  margin-top: 0 !important;
}

.ml-05 {
  margin-left: 0.5rem;
}

.d-none {
  display: none;
}
