/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F8F9FA;
  /* Off-White */
  color: #212529;
  /* Dark Gray */
}

h1,
h2 {
  color: #004085;
  /* Deep Blue */
}

.card-text {
  font-size: 11px;
  /* Adjust the size as needed */
  font-weight: normal;
  /* Can make the text less bold */
  background-color: #004085;
  /* Blue background for non-hover state */
  color: #fff;
  /* A slightly muted color for smaller text */
}

/* Navbar link buttons */
.navbar-dark .navbar-nav .nav-link {
  background-color: #004085;
  /* Blue background for non-hover state */
  color: #ffffff;
  /* White text for contrast */
  padding: 10px 15px;
  /* Button-like padding */
  border-radius: 5px;
  /* Rounded corners for button appearance */
  margin-right: 5px;
  /* Spacing between buttons */
  text-align: center;
}

/* Hover and focus states */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  background-color: #002752;
  /* Darker blue for hover state */
  color: #FFC107;
  /* Yellow text for hover */
  text-decoration: none;
  /* Remove underline */
}

/* New rule to target site name color in navbar */
.navbar-brand .display-5 {
  color: #004085;
  font-size: 1.25rem;
  display: inline-block;
}

@media (min-width: 992px) {
  .navbar-brand .display-5 {
    font-size: 1.75rem;
  }
}

/* Main Content */
.container {
  background-color: #FFFFFF;
  /* White background for main content */
  color: #212529;
  /* Dark Gray text */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 10px;
  /* Reduced gap between navbar and content */
}

/* Buttons */
button,
.button {
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  color: #FFFFFF;
  /* White text */
  background-color: #004085;
  /* Deep Blue */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

button:hover,
.button:hover {
  background-color: #002752;
  /* Darker Blue for hover state */
}

/* Lists */
.list-group-item {
  background-color: #FFFFFF;
  /* White for better readability */
  color: #212529;
  /* Dark Gray */
}

.list-group-item:hover {
  background-color: #FFC107;
  /* Highlight on hover */
  color: #004085;
  /* Deep Blue text */
}

.products {
  font-family: Arial, sans-serif;
  margin: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border: 5px solid #ccc;
  /* 5px border around the container */
  padding: 10px;
  /* Padding inside the border */
}

.search-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filters input[name="searchQuery"] {
  width: 50%;
  /* Double the width of the search input box */
}

.results-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.result-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  /* Light gray background for each item */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  /* Padding inside the item */
}

.result-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.result-item img {
  width: auto;
  max-width: 100%;
  height: 150px;
  /* Fixed height for consistent sizing */
  object-fit: contain;
  margin-bottom: 5px;
}

.result-item>a>div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  /* pushes the row to the bottom */
}

.result-item>a>div p {
  margin-bottom: 0;
}

.result-item h3 {
  text-decoration: none;
  font-size: 14px;
  color: #FFFFFF;
  /* White text */
}

.result-item card-details {
  font-color: #004085;
  /* White text */
  font-weight: bold;
  /* Bold font */
  font-size: 12px;
  /* Adjust the size as needed */
  text-align: center;
  /* Centers the text inside the .card */
}

.view-button {
  background-color: red;
  color: black;
  text-align: center;
  padding: 10px 15px;
  display: block;
  /* Changed to block */
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  //            margin: 5px; /* added a 5px margin to all sides */
}

.view-button:hover {
  background-color: #FFC107;
}

button[type="submit"] {
  background-color: red;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
  /* Adds spacing */
  margin-bottom: 10px;
  /* Adds margin below the button */
  width: 100%;
  /* Button takes 80% of the container's width */
  text-align: center;
  /* Left-align the button's text */
}

button[type="submit"]:hover {
  background-color: #FFC107;
}

/* Bid Price Styling */
.card p {
  margin-left: 2px;
  /* Add a gap from the left edge */
}

.card {
  color: #004085;
  /* White text */
  font-weight: bold;
  /* Bold font */
  font-size: 14px;
  /* Adjust the size as needed */
  text-align: center;
  /* Centers the text inside the .card */
  margin-bottom: 5px;
}

.insert-checklist {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-bottom: 20px;
}

.insert-checklist h2,
.insert-checklist h3 {
  margin-bottom: 15px;
  color: #004085;
}

.insert-checklist ul {
  padding-left: 20px;
}

.insert-checklist li {
  margin-bottom: 10px;
  list-style-type: none;
  /* Remove bullets */
  display: flex;
  /* Use flexbox for layout */
  justify-content: space-between;
  /* Space between the card name and artist */
}

.insert-checklist li span {
  font-style: italic;
  /* Style for the artist */
  font-weight: normal;
  color: #6c757d;
}

.inserts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Create a responsive grid */
  gap: 20px;
  /* Add spacing between insert sets */
}

.insert-set {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #fff;
}

.autograph-checklist {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-bottom: 20px;
}

.autograph-checklist h2,
.autograph-checklist h3 {
  margin-bottom: 15px;
  color: #004085;
}

.autograph-checklist ul {
  padding-left: 20px;
}

.autograph-checklist li {
  margin-bottom: 10px;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}

.autograph-checklist li span {
  font-style: italic;
  font-weight: normal;
  color: #6c757d;
}

.autographs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.autograph-set {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #fff;
}

.artist-checklist,
.animator-checklist {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-bottom: 20px;
}

.artist-checklist h2,
.animator-checklist h2 {
  margin-bottom: 15px;
  color: #004085;
}

.artist-list {
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  list-style-type: none;
}

.artist-list li {
  margin-bottom: 5px;
}

.form-row {
  display: flex;
  align-items: center;
  /* Align items vertically in the center */
  gap: 10px;
  /* Add some space between elements in the row */
  margin-bottom: 10px;
  /* Add some space after each row */
}

.form-row select {
  flex: 1;
  /* Allow select boxes to grow and fill space */
  min-width: 150px;
}

.form-row input {
  flex: 1;
  /* Allow input boxes to grow and fill space */
}
