/* /Assets/css/style.css */

body {
  font-family: sans-serif;
  background: linear-gradient(135deg, #d1c4e9, #a5d6a7);
  margin: 0;
  padding: 2rem;
  color: #333;
}

.container {
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

input, select, button {
  width: 90%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  background: #3949ab;
  color: white;
  cursor: pointer;
  border: none;
}

button:hover {
  background: #0056b3;
}

.divider {
  text-align: center;
  margin: 1rem 0;
  font-weight: bold;
  color: #777;
}

.host-btn {
  background: #28a745;
}

.error-box {
    background: #fbe9e7;
    color: #d84315;
    border: 1px solid #ffab91;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}
.animal-row {
  display: none !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
  width: 99% !important;
  margin-bottom: 1rem !important;
}

.animal-row.visible {
  display: flex !important;
}

.animal-row select {
  width: 80% !important;
  min-width: 0 !important;
  padding: 0.75rem !important;
  font-size: 1rem !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

.animal-row button {
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  font-size: 1.2rem !important;
  background: #3949ab !important;
  color: #000 !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

.animal-row button:hover {
  background: #4855a7 !important;
}

