@charset "utf-8";
<!--
 
.cropPhoto { margin-top: 10px;
}
    
.preview-thumb {
  max-width: 100px;
  margin: 5px;
}
    
    
/* General reset */
* {
  box-sizing: border-box;
}

.photoSlide {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #333;
  text-align: center;
  overflow: hidden;
  max-height: 430px; 
  height: 100%; /* ✅ Fixed height for stability */
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

.slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySlides img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Next & Previous arrows */
.prev, .next, .prev:hover, .next:hover {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  z-index: 10;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Dots / indicators */
.dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  line-height: 20px;
  margin: 0 2px;
  border-radius: 50%;
  display: inline-block;
  background-color: #717171;
  color: #333;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #ccc;
  color:blue;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4; }
  to { opacity: 1; }
}

/* Make cropper grips larger and easier to grab */
.cropper-point {
  width: 15px !important;
  height: 15px !important;
}
    
@media screen and (max-width: 540px) {
    .content { padding-top: 20px;
    }
}
-->