body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #10141a;
  color: white;
}

.crafting-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 24px;
}

.crafting-page a {
  color: white;
}

.recipe-list {
  margin-top: 30px;
}

.recipe-card {
  border: 1px solid #444;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.requirements {
  margin: 20px 0;
}

.requirement {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}

.recipe-card button {
  margin-right: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  cursor: pointer;
}

.craft-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.crafting-tabs {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.crafting-tab {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
}

.crafting-tab.active {
  font-weight: bold;
}
