@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body, html {
    height: 100%;
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

/* Removed body.home centering so the navbar appears at the top */

.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin: 0;
}

nav {
    margin: 20px 0;
    font-size: 1.2rem;
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: white;
}

/* Table styles for Data page */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #ddd;
}

th, td {
    border: 1px solid #444;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #222;
}

tr:nth-child(even) {
    background-color: #111;
}

/* Chart container for the histogram */
.chart-container {
    width: 100%;
    height: 420px;
    margin: 30px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    border-radius: 12px;
}

