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

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  color: #333;
}

a, a:visited {
  color: #0077B6;
}

.tickers {
  border-collapse: collapse;

  th, td {
    padding: 6px 10px;
    text-align: center;
  }

  thead tr {
    border-bottom: 1px solid #666;
  }

  th:first-child, td:first-child {
    border-right: 1px solid #666;
  }

  tr:hover {
    td {
      background: #e9e9e9;
    }

    td:hover {
      background: #e0e0e0;
    }
  }
}

.periods {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 4px;
}

.dates {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 4px;
}
