/* Global styles */
body {
  font-family: Roboto, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive and centered container */
.container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Search input */
.search-input {
  width: 100%;
  max-width: 100%;
  padding: 10px 14px;
  font-size: 14px;
margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  box-sizing: border-box;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 20px;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
}

/* Image styles */
.logo {
  width: 40px;
  height: auto;
  vertical-align: middle;
}

.flag {
  width: 32px;
  height: auto;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .search-input {
    max-width: 100%;
  }

  th, td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .logo {
    width: 30px;
  }

  .flag {
    width: 24px;
  }
}

/* Unified input style */
.search-input,
#country-filter {
  width: 100%;
  max-width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;

  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.59 10.59 0 12 1.41 6 7.41 0 1.41z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* Mobile tap comfort */
#country-filter:focus,
.search-input:focus {
  outline: none;
  border-color: #66afe9;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}
#message {
  margin-top: 20px; /* or any value that fits your layout */
}