/* styles.css */

/* Reset some default browser styles */
body, h1, p, label, input, button, ul, li, img {
  margin: 0;
  padding: 0;
  border: none;
}

/* Set a base font and background color */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0; /* Add this line to reset margins */
  padding: 0; /* Add this line to reset padding */
}

.small-button {
  font-size: 1.5em;
  padding: 10px 20px;
  width: auto;
  display: block; /* Ensure the button is displayed as a block element */
  margin: 0 auto; /* Center the button horizontally */
  margin-bottom: 10px; /* Add margin between the buttons */
  margin-top: 10px; /* Add margin between the buttons */
}

/* Center the heading */
h1 {
  text-align: center;
  margin: 20px 0;
}

/* Centered login and registration forms */
.login-container {
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for login and registration forms */
label {
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

p {
  text-align: center;
  margin-top: 10px;
}

/* Styles for purchases.ejs */
ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

li {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 15px;
  max-width: 300px; /* Adjust the maximum width as needed */
  width: 100%;
  text-align: center;
}

.kit-image {
  max-width: 100px;
  max-height: 100px;
  border: 1px solid #ccc;
  /* Add any other styling you want for the thumbnail images */
}

strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

