/* Page container */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Heading */
main h2 {
  text-align: center;
  font-size: 2rem;
  color: #4c6ef5;
  margin-bottom: 25px;
}

/* Country block */
#statsCarousel h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
}

/* Tables */
#statsCarousel table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#statsCarousel th, 
#statsCarousel td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}

#statsCarousel th {
  background-color: #f4f6fb;
  font-weight: 600;
  color: #444;
  width: 200px;
}

#statsCarousel td {
  background: #fff;
}

/* File input styling */
#fileInput {
  display: block;
  margin: 0 auto 20px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  main {
    padding: 15px;
  }

  #statsCarousel th,
  #statsCarousel td {
    font-size: 14px;
    padding: 8px;
  }
}
