/* Gruvbox Dark Mode Style */
body {
    font-family: Arial, sans-serif;
    background-color: #282828; /* Gruvbox background */
    color: #ebdbb2; /* Gruvbox foreground (light beige) */
    margin: 0;
    padding: 0;
}

h1 {
    color: #ebdbb2; /* Gruvbox light beige */
    text-align: center;
    padding: 20px 0;
    margin: 0;
    background-color: #458588; /* Gruvbox aqua */
    border-bottom: 2px solid #b16286; /* Gruvbox purple */
}

h2 {
    color: #d79921; /* Gruvbox yellow */
    text-align: center;
    margin-top: 30px;
}

table {
    width: 70%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #3c3836; /* Gruvbox dark gray */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

table th, table td {
    border: 1px solid #504945; /* Gruvbox medium gray */
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #d79921; /* Gruvbox yellow */
    color: #282828; /* Gruvbox dark background */
    text-align: center;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #504945; /* Gruvbox medium gray */
}

table tr:hover {
    background-color: #665c54; /* Gruvbox lighter gray */
}

footer {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    background-color: #282828; /* Gruvbox dark background */
    color: #ebdbb2; /* Gruvbox foreground */
    font-size: 14px;
    border-top: 2px solid #d65d0e; /* Gruvbox orange */
}

.pie-chart-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.pie-chart-container div {
    text-align: center;
}

/* Links styling */
a {
    color: #83a598; /* Gruvbox aqua */
    text-decoration: none;
}

a:hover {
    color: #d65d0e; /* Gruvbox orange */
    text-decoration: underline;
}

.icon {
  background-image: url('favicon.png');
}

