@import url('./shared/tokens.css');
@import url('./shared/base.css');
@import url('./shared/components.css');
@import url('./shared/utilities.css');


html {
    margin: 0;
    padding: 0;
    background: transparent;
}

body {
    padding: 0;
    margin: 0;
    font-family: Poppins, -apple-system, Roboto, Helvetica, sans-serif;
    background: transparent;
    color: var(--font);
}


.calendar-table {
    border-radius: 1rem;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-items: flex-start;
    padding-bottom: 1rem;
}

.header-background {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-background-primary-50);
    height: 3rem;
}

.logo {
    height: 2rem;
    width: auto;
}

.league-title {
    color: var(--font-font);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0.5rem;
}

.table-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0 0.5rem;
    height: 1.5rem;
}

.position-header {
    color: var(--font-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 16px;
}

.stats-header {
    display: flex;
    width: 100px;
    align-items: center;
    gap: 0;
    margin-right: 14px;
    justify-content: flex-end;
}

.matches-header, .diff-header {
    color: var(--font-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.points-header {
    color: var(--font-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.table-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-left: 8px;
    min-height: 24px;
    margin-top: 0;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.position-number {
    width: 16px;
    height: 24px;
    color: var(--font-font);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.team-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-avatar {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    color: var(--font-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.team-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 14px;
    justify-content: flex-end;
}

.matches, .goal-diff {
    color: var(--font-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.points {
    color: var(--font-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.matches, .matches-header {
    width: 28px;
}

.goal-diff, .diff-header {
    width: 40px;
}

.points, .points-header {
    width: 32px;
}

.matches-header, .diff-header, .points-header {
    text-align: right;
}

.row-divider {
    width: 100%;
    margin: 0.5rem 0;
    background: var(--font-300);
    height: 1px;
}

