
body {
    background-color: #e3effc;
}

h1 {
    color: #007bff;
}

.bg-primary-custom {
  background-color: #9AD4DF !important;
}

.nav-pills .nav-link.active active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #9AD4DF;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}
.nav-pills {
    --bs-nav-pills-border-radius: var(--bs-border-radius);
    --bs-nav-pills-link-active-color: #fff; /* Active link text color */
    --bs-nav-pills-link-active-bg: #72d1e4; /* Active link background color */
    padding-top:2px;
    margin-top:4px;
    margin-bottom:4px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
}

.navbar-brand {
    color: #394f53;
}
.flex-box {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }

  .container {
    max-width:600px;
  }

  .carousel-inner {
    border-radius:20px;
  }

  .image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1050; /* Ensure it's above most elements */
}

.image-overlay img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto; /* Allow the width to be auto-adjusted */
  height: auto; /* Allow the height to be auto-adjusted */
  object-fit: contain; /* Ensures the image is scaled to maintain its aspect ratio while fitting within the element's content box */
}


.image-overlay-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: white;
    cursor: pointer;
}

.image-overlay-arrow.left {
    left: 10px;
}

.image-overlay-arrow.right {
    right: 10px;
}


  .image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Adjust the gap as needed */
    margin-top: 20px; /* Space from the carousel */
}

.image-grid img {
    width: 150px;
    height: 150px;
    object-fit: cover; /* Keeps the aspect ratio of images */
    cursor: pointer; /* Indicates the images are clickable */
}
.max-width-1200 {
    max-width:1200px;
}
.max-width-800 {
  max-width:800px;
}
.width-800 {
  width:800px;
}
.max-width-100{
    max-width:100%;
    margin-left: 10px;
    margin-right: 10px;
}

  
.make-space {
  min-height: 50px;
}
.auction-end {
  font-style: italic;
}
.offer-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.offer-text {
  font-size: 22px; /* Smaller font size */
  font-style: italic; /* Italic text */
  margin-right: 10px; /* Adds some space between the text and the amount */
}

.offer-amount {
  font-size: 48px; /* Larger font size */
  color: darkblue; /* Dark blue color */
  font-weight: bold; /* Optional: Makes the amount bold */
}
.contact-info {
  color: #fff; /* Adjust color as needed */
  padding: 0.5rem 1rem; /* Match Bootstrap's nav-link padding */
  display: block;
}

.contact-info:hover {
  color: #ccc; /* Adjust hover color as needed */
  text-decoration: none; /* Removes underline from links on hover */
}
.nav-item {
  display: flex; /* Use flexbox to align items */
  align-items: center; /* Center items vertically */
  white-space: nowrap; /* Prevent wrapping */
}

.contact-info {
  margin-left: 0.5rem; /* Optional: Add some space between text and link */
}

.min-height-100vh {
  min-height: calc(100vh - 300px);
  align-items:flex-start;
}
/* Custom CSS to add border radius to the table */
.custom-table {
  border-collapse: separate;
  border-radius: 5px;
  border-spacing: 0;
}

/* Apply border radius to the first and last cells in each row */
.custom-table tr:first-child th:first-child {
  border-top-left-radius: 5px;
}

.custom-table tr:first-child th:last-child {
  border-top-right-radius: 5px;
}

.custom-table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

.custom-table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

/* Make the first row of the tbody green */
.custom-table tbody tr:first-child td {
  background-color: #28a745; /* Bootstrap success color */
}
