/* FOOTER */
.footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.footer a {
  color: #4CAF50;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
/* FOOTER --> END */

/* FIGHT OPTIONS */
.fighter-option {
  /* display: flex; */
  align-items: center;
  min-width: 120px;
  margin: 8px 0;
  gap: 8px;
}

.fighter-option input[type="number"],
#numFighters {
  width: 60px;
  min-width: 120px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}
/* FIGHT OPTIONS --> END*/


body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.logo {
  display: block;
  max-height: 80px;
  max-width: 100%;
  margin: 0 auto 10px auto; /* center horizontally, margin bottom 10px */
}

h1 { margin-bottom: 20px; }

label, input, select {
  display: block;  /* keep inputs and labels block */
  margin: 10px auto;
  font-size: 1rem;
}

input, select {
  padding: 8px;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* BUTTONs */
button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

button.primary { background: #4CAF50; color: white; }
button.secondary { background: #eee; }
/* BOTTONs --> END */

/* footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #555;
} */

/* HEADER */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.app-header img { max-height: 50px; }
.app-header h2 { margin: 0; }
/* HEADER --> END */

