/* Leaderboard Page Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: rgba(0, 0, 0, 0.5);
  color: #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;

}

.header-text h1{
    font-size: 36px;
    color: white;
}

.nav{
    width: 100%;  
    color: white;
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10; 
    background: black;
    box-sizing: border-box;
}
a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
}
.container {
  max-width: 72rem;
  width: 100%;
  background-color: #2f3031;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 180px;
}

.title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  min-width: 100%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: left;
  border: 1px solid #4a4a4a;
  border-collapse: collapse;
}

thead {
  background-color: #1a1a1a;
  color: #ffffff;
}

th {
  padding: 0.75rem 1rem;
  border: 1px solid #4a4a4a;
  font-weight: 600;
}

tbody {
  color: #e5e7eb;
}

td {
  padding: 0.75rem 1rem;
  border: 1px solid #4a4a4a;
}

tr:hover {
  background-color: #3a3a3a;
}
