/* Custom theme overrides for LLM LSD */

:root {
  --header-font-color: #ffffff;
}

/* Override header with background image */
.gdoc-header {
  background-image: url('bg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

/* Hide the logo */
.gdoc-brand__img {
  display: none;
}

/* Customize site title */
.gdoc-brand__title {
  font-family: 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}

/* Concepts List Table */

.concept-table {
  width: 90%;
  margin: 1.5rem 0;
}

.concept-table td {
  padding: 0.5rem 1rem;
  width: 33.33%;
}

.concept-table a {
  text-decoration: none;
}

.concept-table a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .concept-table, .concept-table tbody, .concept-table tr, .concept-table td {
    display: block;
    width: 100%;
  }
  .concept-table td {
    padding: 0.25rem 0;
  }
}

/********************/
