body {
    /* background-image: url("background.png"); */
    background-color: #152e6f;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}
.header {
    /* background-image: url('background.jpg'); */
    /* background-size: cover; */
    background-position: center;
    text-align: center;
    padding: 10px 10px;
    height: 20px;
}

.header-image {
    background-image: url('header.webp'); 
    background-size: cover; 
    background-position: center; 
    width: 100vw; height: 250px;
}

h2.transparent-outline-text {
  color: transparent; /* Makes the fill transparent */
  -webkit-text-stroke: 1px white; /* White outline */
  font-weight: bold; /* Optional: makes the stroke more visible */
}

.header h1 {
    font-size: 48px;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px #000;
}
.leaderboard {
    margin: 40px auto;
    width: 80%;
}
.leaderboard h1 {
    text-align: center;
    margin-bottom: 20px;
}
.leaderboard h2 {
    text-align: center;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;       /* Controls the space between cells */
    background-color: transparent;
    color: #000;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden; /* Ensures content doesn't overflow the rounded corners */

}
th, td {
    background-color: #ffffff;
    color: #000;
    padding: 10px;
    border-radius: 8px;        /* Rounds each cell */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
    border: none;              /* Removes default borders */
    text-align: center;
}

th {
    background-color: #596bbb;
    color: white;
}

.unformatted-link {
    color: inherit;
    text-decoration: none;
}


.left-align {
    text-align: left;
    padding-left: 10px;
}

/* Styles for the canvas container */
/* Container with two columns */
.container {
    display: none;
    /* Use flexbox for side-by-side layout */
    justify-content: center;
    /* Center horizontally */
    align-items: flex-start;
    /* Align to top */
    gap: 20px;
    /* Space between columns */
    padding: 20px;
	background-image: url('starlight.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

/* Left column (e.g., controls or text) */
.left-summary {
    width: 60%;
    height: 100%;
    background: transparent;
    vertical-align: middle;
}

/* Right column (canvas) */
.right-earth {
    flex: 1;
    /* take remaining space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-earth {
    background: transparent;
    border: none solid #ccc;
    border-radius: 8px;
}