body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #003366, #0055aa);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container, .dashboard-container, .page-container {
  background: #fff;
  color: #003366;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  width: 350px;
}

input {
  width: 80%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  background: #007bff;
  color: white;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

.country-buttons button {
  margin: 10px;
  font-size: 16px;
}

.logout {
  display: inline-block;
  margin-top: 20px;
  color: #d9534f;
  text-decoration: none;
  font-weight: bold;
}

.logout:hover {
  text-decoration: underline;
}
