@charset "UTF-8";

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1,
h2 {
  text-align: center;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}

tr:hover {
  background-color: #f9f9f9;
}

#myChart {
  width: 75%;
  max-width: 800px;
  margin: 40px auto;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

#prevBtn,
#nextBtn {
  padding: 10px 20px;
  background-color: #ddd;
  color: black;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

#prevBtn:hover,
#nextBtn:hover {
  background-color: #ababab;
}

.statistics-section {
  margin-top: 40px;
}

.artists-table {
  margin-top: 20px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
