/*
 * Visual recreation of the supplied single-page reference.
 * External advertising/tracking CSS/scripts removed.
 */

a:link,
a:visited {
    color: #fff;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ffd700;
    text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #000;
    color: #fff;
    margin: auto;
    font-family: Tahoma, Verdana, Arial, sans-serif;
}

body {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 852px;
    min-height: 100vh;
    margin: auto;
}

header {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 40px;
    background-color: #d20000;
    border-bottom: 2px solid #fff;
}

.banner {
    padding: 3px 8px 5px;
}

h1,
.title-main {
    color: #ebf55b;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}

.description {
    color: #fff;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
}

nav {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

nav ul,
nav ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main {
    width: 100%;
    min-height: 100%;
    background-color: #212121;
    box-shadow: 0 -1px 2px #212121;
    color: #fff;
    font-size: 14px;
}

.intro {
    padding: 4px 5px;
    font-size: 11px;
    line-height: 15px;
}

.contenido {
    width: 100%;
}

.matches-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    color: #fff;
    font-size: 12px;
}

.matches-table td {
    padding: 2px 4px;
    vertical-align: middle;
}

.matches-table tr:nth-child(odd) {
    background: #1d1d1d;
}

.matches-table tr:hover {
    background: #292929;
}

.match-name {
    width: auto;
    overflow-wrap: anywhere;
}

.match-icon {
    width: 28px;
    text-align: center;
}

.match-icon img {
    display: inline-block;
    width: 20px;
    height: 14px;
    object-fit: contain;
    vertical-align: middle;
}

.match-time {
    width: 72px;
    color: #fff;
    text-align: right;
    white-space: nowrap;
}

.t {
    display: inline-block;
}

h2 {
    padding: 4px 5px 8px;
    color: orange;
    font-size: 12px;
    line-height: 16px;
}

footer {
    float: left;
    clear: both;
    width: 100%;
    min-height: 20px;
    background: #d20000;
    box-shadow: 0 -1px 2px #212121;
    color: #fff;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
}

#footer-bar-text,
#footer-link {
    margin: 0 4px;
}

@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        max-width: none;
    }

    header {
        display: inline-block;
    }

    .main,
    .contenido {
        width: 99%;
    }

    body {
        font-size: 100%;
    }

    footer {
        display: none;
    }
}

@media only screen and (max-width: 650px) {
    body {
        font-size: 70%;
    }

    .banner {
        padding-inline: 4px;
    }

    h1,
    .title-main {
        font-size: 13px;
    }

    .description {
        font-size: 10px;
        line-height: 13px;
    }

    nav {
        font-size: 10px;
    }

    .main {
        font-size: 12px;
    }

    .matches-table {
        font-size: 11px;
    }

    .matches-table td {
        padding: 2px;
    }

    .match-icon {
        width: 24px;
    }

    .match-time {
        width: 58px;
    }
}
