/* style.css */
.image-container {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  color: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-container:hover .overlay {
  opacity: 1;
}

.view-more {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Lightbox CSS */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

  /* Custom CSS for hiding scrollbars but allowing scrolling */
  .scrollable {
    max-height: calc(100vh - 4rem); /* Adjust height as needed */
    overflow-y: auto;
}

/* Hide scrollbar for Webkit, Internet Explorer, Edge */
.scrollable::-webkit-scrollbar, 
.scrollable::-ms-overflow-style {
    display: none;
}

/* Hide scrollbar for Firefox */
.scrollable {
    scrollbar-width: none;
}

/* Custom focus style */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: inherit;
  box-shadow: none;
  border-bottom: 1px solid #000;
}

/* Brutalist toast modal style */
.toast {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 10px;
  z-index: 1000;
}

.active {
  text-decoration: underline;
}
