/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 .modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Dark overlay */
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%; /* Prevent full width */
  max-height: 90%; /* Prevent full height */
  overflow: auto; /* Allow scrolling if needed */
}

.modal img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* Testimonials Carousel - Ensure equal heights */
.testimonials-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonials-carousel .owl-item {
  display: flex;
  height: auto;
  align-items: stretch;
}

.testimonials-carousel .owl-item .item {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: stretch;
}

.testimonials-carousel .owl-item .item > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

/* Navigation buttons styling */
.owl-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.owl-nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
