body {
    font-family: monospace;
    background-color: #1c1c1c;
    background-image: linear-gradient(to right, #17161ad0, #262626d0 50%, #2a2a2ad0), url(../images/bg.jpg);
}

.container {
    width: 80%;
    margin: 0 auto;
    padding-top: 50px;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-button {
    background-color: #2c2c2c;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: uppercase;
    -webkit-transition: all 0.5s cubic-bezier(0.79, 0.01, 0.8, 0.79);
    -o-transition: all 0.5s cubic-bezier(0.79, 0.01, 0.8, 0.79);
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
    outline: 2px solid transparent; /* Add outline property */
}

.tab-button.active, .tab-button:hover {
    background-color: #298af1;
    outline: 2px solid #fff; /* Change outline color on active/hover */
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th, td {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

tr {
    border-bottom: 1px solid #4e4e4e;
	transition: background-color 0.3s, transform 0.3s;
	height: 44px; /* or any preferred height */
}

tr:hover {
    background: linear-gradient(to right, rgba(15, 15, 15, .8) 0, #298af17a 50%, rgba(15, 15, 15, .8) 100%);
}

th {
    color: white;
}

td {
    color: #c0c0c0;
}

table th, table td {
    padding: 10px;
    text-align: center;
}

.gold {
    background-color: #ffd70061;
}

.silver {
    background-color: #c0c0c082;
}

.bronze {
    background-color: #cd7f326b;
}

.header {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 48px;
}

h1 {
    color: white;
}

h1 span {
    color: #298af1;
}

.stats {
    background-color: #121212;
    padding: 50px;
    background: -webkit-linear-gradient(top, rgba(18, 18, 18, 0) 0px, rgba(18, 18, 18, 0) 49px, #121212 50px, #121212 calc(100% - 50px), rgba(18, 18, 18, 0) calc(100% - 49px), rgba(18, 18, 18, 0) 100%), url(assets/images/background-form-top.png) top center no-repeat, url(assets/images/background-form-bottom.png) bottom center no-repeat;
    background: -o-linear-gradient(top, rgba(18, 18, 18, 0) 0px, rgba(18, 18, 18, 0) 49px, #121212 50px, #121212 calc(100% - 50px), rgba(18, 18, 18, 0) calc(100% - 49px), rgba(18, 18, 18, 0) 100%), url(assets/images/background-form-top.png) top center no-repeat, url(assets/images/background-form-bottom.png) bottom center no-repeat;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0px, rgba(18, 18, 18, 0) 49px, #121212 50px, #121212 calc(100% - 50px), rgba(18, 18, 18, 0) calc(100% - 49px), rgba(18, 18, 18, 0) 100%), url(assets/images/background-form-top.png) top center no-repeat, url(assets/images/background-form-bottom.png) bottom center no-repeat;
}

.top-tr {
    background: linear-gradient(to right, rgba(15, 15, 15, .8) 0, #298af17a 50%, rgba(15, 15, 15, .8) 100%);
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .tabs {
        flex-direction: column;
    }

    .tab-button {
        margin: 5px 0;
    }

    .header {
        font-size: 36px;
    }

    h1 {
        font-size: 32px;
    }

    table th, table td {
        padding: 8px;
        font-size: 14px;
    }

    .stats {
        padding: 20px;
    }
}

.medal-icon {
	width: 20px;
    height: 20px;
}

footer {
    background-color: rgb(30 30 30);
    color: #fff;
    text-align: center;
    padding: 20px 0; /* Increase the padding to make the footer bigger */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
	width: 100%;
    position: fixed;
}

footer p {
    font-size: 16px; /* Adjust the font size as needed */
    margin: 0;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.copyright {
    color: #a9d0e7;
    text-decoration: none;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.go-back-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	text-decoration: none;
}

.go-back-button:hover {
    background-color: #0056b3;
}

.arrow {
    margin-right: 8px;
    font-size: 20px;
}