<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
* {
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

h1, h2, h3 {
    color: white;
}

h1 {
    font-size: 5em;
}

h2{
    font-size: 3em;
}

h3{
    font-size: 1.5em;
}

p {
    font-size: 1.2em;
    color: white;
    line-height: 1.5em;
    text-align: start;
    background-color: rgb(53, 52, 60);
    border-radius: 5px;
    width: 100%;
    padding: 20px;
}

img {
    max-width: 50%;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2em;
    justify-items: center;
    margin: 5em auto;
    max-width: 1000px;
}

body{
    background: rgb(43, 42, 50);
    color: white;

}

.row-element {
    align-self: start;
    width: 100%;
}

.span-row {
    grid-column: span 2;
}

.dropdown-options li {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.dropdown-content .dropdown-search {
    position: relative;
}

.dropdown-search i {
    left: 15px;
    font-size: 20px;
    line-height: 53px;
    position: absolute;
    color: white;
}

.dropdown-search input {
    height: 53px;
    width: 100%;
    font-size: 20px;
    border-radius: 5px;
    padding: 0 15px 0 43px;
    border: none;
    /*border: 1px solid rgb(213, 212, 220);*/
    background: rgb(53, 52, 60);
    color: white;
}

.dropdown-content .dropdown-options {
    display: none;
    margin-top: 10px;
    max-height: 250px;
    overflow-y: auto;
    background: rgb(53, 52, 60);
    color: white;
    border-radius: 5px;
}

.dropdown-wrapper.active .dropdown-options {
    display: block;
}

.dropdown-options::-webkit-scrollbar {
    width: 0;
}

.dropdown-options li {
    height: 50px;
    padding: 0 13px;
    font-size: 20px;
    border-radius: 5px;
}

.dropdown-options li:hover {
    background: rgb(73, 72, 80);
}

#winner-pokemon {
    color: white;
    background-color: rgb(53, 52, 60);
    border-radius: 5px;
    width: 100%;
    padding: 20px;
}

.card_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10%;
    width: fit-content;
}

.card {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    border-radius: 12px;
}

.card-inner {
    padding: 12px;
    border-radius: 5px;
    flex-grow: 1;
}

.card img {
    display: block;
    max-height: 300px;
    position: relative;
    margin: 20px auto;
}

.card-hp {
    width: 80px;
    background: white;
    text-align: center;
    padding: 8px 0;
    border-radius: 30px;
    margin-left: auto;
    font-weight: 400;
}

p.card-hp{
    color: black;
}

.card-name {
    text-align: center;
    font-weight: 600;
}

.card-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 12px;
    margin-top: 12px;
}

.card-hp span,
.card-types span {
    font-weight: 600;
    text-align: center;
}

.card-types span {
    padding: 5px 20px;
    border-radius: 5px;
    color: white;
}

.card_stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.card_stats p {
    color: #404060;
}

#myPokStats, #opPokStats {
    padding: 1em;
}

.pie-chart-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 600px;
}

#pie-chart {
    flex-grow: 1;
    margin: 1em;
}

#pie-chart h3 {
    margin-bottom: 1em;
}

#filter-btn-container{
    margin: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 4px;
}

.filter-btn {
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 12px 16px;
    background: rgb(73, 72, 80);
    color: white;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgb(93, 92, 100);
}

.filter-btn.active {
    background: rgb(113, 112, 120);
    color: white;
}

a{
    color: rgb(203, 202, 210);
}
/* CirclePack*/
#circlePackVisualization svg {
    margin: auto;
    display: inline-block;
    align-self: center;

}

#gameCirclePackVisualization svg {
    display: block;
    margin: auto;
}


#gameCirclePackVisualization text {
    pointer-events: none;
    font-size: 10px;
}

.circlePackContainer {
    width: 100%;
    text-align: center; /* Centers inline and inline-block children */
}</pre></body></html>