@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;
}

/* tokens provided by shared/tokens.css */

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

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

.logo-header img {
    height: 2rem;
    width: auto;
}

.match-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-evenly;
    margin: 2rem 1rem;
}

.team-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: flex-start;
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: flex-start;
    padding-top: 0.5rem;
}

.team-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: flex-start;
}

.team-left img, .team-right img {
    width: 4rem;
    height: 4rem;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.team-name {
    color: var(--font-font, var(--font));
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins-Medium', 'Poppins', sans-serif;
}

.time {
    color: var(--font-font);
    font-size: 1.375rem;
    font-weight: 500;
    font-family: 'Poppins-Medium', 'Poppins', sans-serif;
}

.date {
    color: var(--font-600);
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins-Regular', 'Poppins', sans-serif;
}