@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

/* home.css */

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* Adjust as needed to give it some space */
  width: 100%;
}

/* Optional: Dimming effect for card container during filtering/search */
#cardContainer.is-loading-content {
  opacity: 0.5;
  pointer-events: none; /* Prevent interaction while dimmed */
  transition: opacity 0.3s ease-in-out;
}

#load-more-btn {
  color: whitesmoke;
  background-color: #48c78e;
  transition: all 0.3s ease;
}

#load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-image a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.field {
  max-width: 500px;
  margin: 0 auto;
}

.input:focus {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.card {
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
  overflow: hidden;
}

.card-image img {
  transition: transform 0.3s ease;
}

.card-image:hover img {
  transform: scale(1.05);
}

.card-content {
  flex-grow: 1;
}

.card-footer-item {
  font-weight: bold;
  color: #3273dc;
}

.card-footer-item:hover {
  background-color: #f5f5f5;
}

footer a {
  color: #48c78e;
}

.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10; /* Ensures the badge is on top of the image */
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

/* Ensures columns with boxes stretch to equal heights */
.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Forces the background of the outlined button in the notification box to be white so text remains highly readable */
.bg-white {
  background-color: #ffffff !important;
}

/* Optional: Subtle border transition for the value-prop boxes to make them feel active */
.box.h-100 {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.box.h-100:hover {
  border-color: #48c78e;
  box-shadow: 0 8px 20px rgba(72, 199, 142, 0.1);
}