/*
 * 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.
 */
:root {
  --primary: #6c63ff;
  --accent: #6c63ff;
  --background: #ffffff;
  --text-color: #000000;
  --button-color: #000000;
}

/* You can add global styles to this file, and also import other style files */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

main {
  padding: 40px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
}

a {
  text-decoration: none;
}