body {
background-color: #201333;
color: #FFFFFF;
font-family: Trebuchet MS, sans-serif;
margin: 0;
padding: 0;
font-weight: bold;
}
.main-container {
padding: 0 30%;
box-shadow: inset 0 0 10px #000;
text-align: center;
}
.content {
background-color: #030303;
margin: 20px auto;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
border-radius: 15px;
}
.buttons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal-sized columns */
    gap: 20px; /* Space between buttons */
    padding: 20px 0;
}

/* Button Styling */
.button {
    background-color: #FCCD4C; 
    color: #030303;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 24px; /* Reduced font size to fit smaller buttons */
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px; 
    transition: transform 0.2s ease;
    text-decoration: none; 
    aspect-ratio: 1 / 1; /* Keeps the button square */
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.button_ls {
    background-color: #3dc45a; 
    color: #030303;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px; 
    transition: transform 0.2s ease;
    text-decoration: none; 
    aspect-ratio: 1 / 1;
}
h1, h2 {
text-align: center;
}

.content {
    background-color: #030303;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}
th, td {
    border: 1px solid #FCCD4C;
    padding: 8px;
    text-align: left;
    color: #FCCD4C;
}
th {
    background-color: #030303;
    color: #FFFFFF;
}
tr:nth-child(even) {
    background-color: #201333;
}
tr:hover {
    background-color: #FDC115;
}
span {
    color: inherit;
}
tr:nth-child(even) {
    background-color: #201333;
}
tr:nth-child(odd) {
    background-color: #382159;
}
tr:hover {
    background-color: #292343;
}
tr:nth-child(odd):hover {
    background-color: #383838;
}

.content {
text-align: center;
}

/* unvisited link */
a:link {
color: aquamarine;
}

/* visited link */
a:visited {
color: aquamarine;
}

/* mouse over link */
a:hover {
color: aquamarine;
}

/* selected link */
a:active {
color: aquamarine;
}

a.button {
    color: black;
}

a.button_ls {
    color: black;
}

.profile-pic {
    width: 30px; /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
    border-radius: 50%; /* Makes the image circular, adjust or remove for a square */
    margin-right: 5px; /* Adds some space between the image and the text */
    vertical-align: middle; /* Aligns the image with the middle of the text */
}

td.center {
    text-align: center;
}
/* Staff Member Section */
.staff-member {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
}

/* Darker background for alternating sections */
.darker {
    background-color: #292343; /* Slightly darker */
}

/* Lighter background for alternating sections */
.lighter {
    background-color: #382159; /* Slightly lighter */
}

/* Profile Picture Styling - Upright Rectangle with Rounded Vertices */
.staff-member img.profile-pic {
    width: 100px; /* Adjust width for upright rectangle */
    height: 150px; /* Height to make it upright */
    border-radius: 15px; /* Rounded corners */
    margin-right: 20px;
    object-fit: cover; /* Ensures the image maintains proper aspect ratio */
}

/* Staff Info Styling */
.staff-info {
    text-align: left;
}

.staff-info h2, .staff-info h3 {
    margin: 0;
}

.staff-info h2 {
    font-size: 1.5rem;
    color: #FCCD4C;
}

.staff-info h3 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.staff-info p {
    font-size: 1rem;
    color: #FCCD4C;
    margin: 0;
}

/* Champions Container */
.champions-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between champion rows */
    padding: 20px 0;
}

/* Champion Row */
.champion-row {
    display: flex;
    gap: 20px; /* Space between cards in the same row */
}

/* Champion Card */
.champion-card {
    flex: 1; /* Default to full width */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    transition: transform 0.2s ease;
}

/* Gradient - Full Width */
.champion-card.gray {
    background: linear-gradient(to right, rgba(var(--rgb-custom-color), 0.6), #383838); /* Default gradient */
}

/* Gradient for First Card in a Tie */
.champion-card.gray.gradient-left {
    background: linear-gradient(to right, #383838, rgba(var(--rgb-custom-color), 0.6)); /* Gray on left */
}

/* Gradient for Second Card in a Tie */
.champion-card.gray.gradient-right {
    background: linear-gradient(to right, rgba(var(--rgb-custom-color), 0.6), #383838); /* Gray on right */
}

/* Half-width Card for Ties */
.half-width {
    flex: 0.5; /* Half width for tied champions */
}

.champion-card:hover {
    transform: scale(1.02);
}

/* Gray Class */
.gray {
    background-color: #383838; /* Neutral gray background */
}

.champion-card h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #FCCD4C;
}

.champion-card p {
    margin: 5px 0;
    color: #FFFFFF;
    font-size: 1rem;
}
