/* Styling for .pallet-container */
.pallet-container {
  background: url('/Sailor/assets/img/background.jpg') no-repeat center center/cover; /* Add your image path */
  color: #fff;
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pallet-container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
}

.pallet-container p {
  font-size: 1rem;
  color: #ddd;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
}

/* Overlay for background dimming */
.pallet-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.pallet-container h1,
.pallet-container p {
  position: relative;
  z-index: 2; /* Ensure text stays on top of the overlay */
}
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield; /* modern */
}
