<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://themes.googleusercontent.com/fonts/css?kit=vTbT7urhBWoQfR2Ssl4_0CmRZpIX9SNBjLkdcpGW6dk);

body {
    font-family: "Oswald", "sans-serif";
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; /* This preserves aspect ratio */
    background-attachment: fixed;
    text-align: center;
}


body.f1-light {
    background-color: #d9d9d9;
    color: black;
}

body.f1-light.with-logo {
    background-image: url('images/kocie_f1_czarne_background.png');
}

body.f1-dark {
    background-color: #434343;
    color: white;
}

body.f1-dark.with-logo {
    background-image: url('images/kocie_f1_biae_background.png');
}

#main-col {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding-top: 40px;
}

img.track-img {
    width: 100%;
}


hr {
    height: 5px;
    background-color: #333;
}


.tyre-table {
    border-collapse: collapse;
    margin: 20px auto;
}

.tyre-table td {
    padding: 10px;
    border: 2px solid #333;
    text-align: center; /* Ensures centering works in all browsers */
    vertical-align: middle; /* Centers text vertically as well */
}

.row-hard {
    background-color: #ffffff;
}

.row-med {
    background-color: #fff5b6;
}

.row-soft {
    background-color: #ffb9b9;
}

.row-wet {
    background-color: #b9dcff;
}


div.compound {
    width: 40px;
    height: 40px;
    background-color: #303030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc500;
    font-weight: bold;
}

div.compound &gt; span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.compound-c1 {
    border-width: 0;
    color: white;
}

.compound-c2 {
    border: 3px solid white;
    color: white;
}

.compound-c3 {
    border: 3px solid #ffc500;
    color: #ffc500;
}

.compound-c4 {
    border: 3px solid red;
    color: red;
}

.compound-c5 {
    border-width: 0;
    color: red;
}

.compound-w {
    border: 3px solid #2b76ff;
    color: #2b76ff;
}


a.button {
    width: 80%;
    margin: 10px auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #117bd8;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    border: 2px solid black;
    cursor: pointer;
    font-size: 26px;
}

a.button:hover {
    background-color: #004c8e;
}


#event-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 20px; /* Optional: adds space between items */
    font-size: 24px;
}

#event-list &gt; div {
    border: 2px solid black;
    border-radius: 7px;
    opacity: .5;
}

#event-list &gt; div:hover {
    opacity: 1;
}

#event-list &gt; div &gt; a {
    display: block;
    text-decoration: none;
    color: black;
}


.downloads {
    text-align: left;
    font-size: 36px;
}
</pre></body></html>