/* inventory-style.css */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f8ff; /* Light Cyan background */
  color: #333; /* Dark Text color */
}

.inventory-container, .sell-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333; /* Dark Text color */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.inventory-title, .sell-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  margin-bottom: 5px;
}

input {
  margin-bottom: 10px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #333; /* Dark Text color border */
  border-radius: 5px;
}

button {
  background-color: transparent;
  border: 2px solid #007acc; /* Blue border for buttons */
  color: #007acc; /* Blue text color */
  padding: 12px 15px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #007acc; /* Blue background color on hover */
  color: #fff; /* White text color on hover */
}

.sell-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #007acc; /* Blue text color for sell button */
  border: 2px solid #007acc; /* Blue border for sell button */
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}

.sell-button:hover {
  background-color: #007acc; /* Blue background color on hover for sell button */
  color: #fff; /* White text color on hover for sell button */
}
