/* styles.css */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #007bff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  width: 100px;
  text-align: center;
}

.nav-links a:hover {
  color: #e0e0e0;
}

#wallet-status {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

#walletStatus {
  font-size: 14px;
  margin-left: 10px;
}

main {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.centered-text {
  text-align: center;
}

.about-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 150px;
  height: auto;
}

h1, h2 {
  color: #007bff;
  margin-bottom: 20px;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 22px;
}

.title-large {
  font-size: 56px;
}

p, ul {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wallet-info {
  margin-bottom: 30px;
}

.email-register, .email-verify, .manage-friends, .recipient-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

#registeredEmail {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

input, select, button {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input:focus, select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.send-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recipient-group select {
  flex: 1;
  min-width: 150px;
}

.recipient-group input {
  flex: 2;
}

.token-amount {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

#priceConversion, #amountUSD {
  font-size: 12px;
  color: #555;
  margin: 0;
}

#result {
  margin-top: 20px;
  font-size: 14px;
}

#friendsList {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

#friendsList ul {
  list-style: none;
  padding: 0;
}

#friendsList li {
  padding: 5px 0;
}

footer {
  display: flex;
  justify-content: center;
  padding: 10px 30px;
  background-color: #007bff;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: 100%;
  font-size: 14px;
}