:root {
    --max-width-content: 1100px;
    --sidebar-width: 250px;
}

.matches-page-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    flex-shrink: 0;
    position: relative;
}

.matches-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    margin: 10px 1em;
    padding-top: 0;
    overflow: hidden;
    min-width: 0;
}

.page-header {
  font-size: 1.2em;
  font-weight: 600;
}

.match-list {
    display: flex;
    flex-direction: column;
}
.match-day-header {
    font-size: 1.1em;
    font-weight: 500;
    margin-top: .5em;
}

.load-more-btn {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background-color: var(--background-secondary3);
  color: var(--text);
  border-radius: var(--border-radius);
  height: 3em;
  margin-top: 1em;
  cursor: pointer;
}
.load-more-btn:hover {
  background-color: var(--secondary);
}

.no-matches {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin: 1em 0;
}

@media screen and (max-width: 768px) {
    .matches-wrapper {
        margin: 10px .25em;
    }
    .match-box {
        border-radius: var(--border-radius-sm);
        padding: calc(var(--border-radius-sm)/2);
        font-size: .8em;
    }
}