.found-image-wrap {
  display: block;
  align-items: baseline;
  gap: 10px; /* space between image and text */
  margin-bottom: 10px;
}

.found-image-wrap img {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.found-image-caption {
  /* font-size: 0.9em; */
  font-size: 14px;
  color: #000;
}

/* start slider */

.image-strip-wrapper {
  display: flex;
  align-items: center; /* Vertically center the arrows and slider if heights vary */
  margin-left: -30px;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
} 

.image-strip-outer {
  /*display: inline-block;*/    /* Collapse to fit .image-strip */
  position: relative;       /* Anchor for pseudo-elements */
  width: calc(100% + 30px);
  display: inline-block;
  max-width: calc(100% + 30px);
  transition: width 0.3s ease;  /* Smooth width adjustment */ 
  /*flex: 1 1 auto; *//* Expand to take remaining space */
  /*overflow: hidden;*/
  white-space: nowrap; /* Prevent wrapping inside */   
}

.arrowLeft, .arrowRight {
  display: inline-block; /* Since <a> is inline by default */
  text-decoration: none !important; /* No underline */
  width: 30px;            /* Width for the arrow */
  /*height: 150px;*/          /* Taller height for easier mobile tapping */
  /*line-height: 150px;*/     /* Center the arrow vertically */
  /*text-align: center;*/     /* Center the arrow horizontally */
  cursor: pointer;
  user-select: none;      /* Prevent accidental text selection */
  color: #222 !important;           /* Arrow color */
  font-size: 24px;        /* Bigger arrow */
  font-weight: bold;      /* Make arrows a little heavier if you want */
  opacity: 0.3;
  transition: opacity 0.3 ease;
  transform: scaleY(3.5) scaleX(0.5);
} 

.arrowLeft:hover, .arrowRight:hover {
	opacity: 1;
}

.overlayRight {
	align-items: center;
	background: none repeat scroll 0 0 white;
	/*border: 1px solid #000;*/
	display: flex;
	height: 60px;
	left: 800px;
	/* pointer-events: none;*/
	position: absolute;
	top: 0;
	transition: left 0.3s ease 0s;
	width: 800px;
	z-index: 20;
	min-width: 15px;
}

/*
.arrowRight{
	visibility: hidden;
}
*/
/* Arrows */
/*
.image-strip-outer::before,
.image-strip-outer::after {
  position: absolute;
  top: 0;
  width: 30px;                   
  height: 100%;
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #333;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(2);       
  z-index: 2;
  pointer-events: auto;       
  transition: opacity 0.3s ease;
}
*/

.image-strip {
  /*max-width: 92%;*/
  overflow: hidden;
  height: 60px;
  /*margin-bottom: 10px;
  margin-top: 15px */;
  user-select: none;          /* Prevent text selection */
  -webkit-user-drag: none;    /* Prevent dragging on Webkit */
  touch-action: none;         /* Prevent touch swipe/scroll */   
  scrollbar-width: none;
  position: relative; 
}

.image-strip::-webkit-scrollbar {
  display: none;
}

/*
.image-strip.enlarged {
  height: 120px;
}
*/

/*
.image-strip-inner {
  height: 97%;
  overflow-x: auto;
  white-space: nowrap;       /_* Keep .imageDivs in a single row *_/
  scrollbar-width: none
  margin-bottom: -20px;
  padding-bottom: 20px;
  position: absolute;
  left: 0;
  top: 0;
  }
  */

/*
.image-strip-inner {
  position: relative;
  height: 100%;
} 
*/

.image-strip-inner {
  display: flex;             /* Align images in a row */
  flex-wrap: nowrap;         /* Prevent wrapping */
  /*transition: transform 0.3s linear;*/  /* Smooth default transform (JS overrides this) */
  transition: transform 1s linear;  /* Smooth default transform (JS overrides this) */
  will-change: transform;    /* Hint for performance optimization */
  position: absolute;
  height: 100%;
}


.image-strip-inner::-webkit-scrollbar {
  display: none;
}

/*
.imageDiv {
  display: inline-block;
  vertical-align: top;  
  height: 100%;
  position: absolute;
  top: 0;
  transition: transform 1s linear;
}
*/

.imageDiv {
  flex: 0 0 auto;             /* Prevents shrinking or growing */
  margin-right: 6px;          /* Space between images (optional) */
  height: 100%;               /* Match the strip height */
  display: flex;              /* Center the image inside */
  align-items: center;        /* Vertically center image */
  justify-content: center;    /* Horizontally center image */
  box-sizing: border-box;     /* Ensure padding/border stay inside width/height */
}

.imageDiv a {
  display: block;       
  width: 100%;        
  height: 100%;       
  text-decoration: none;  
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: inherit;          
} 

.imageDiv img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 8px;
  margin-right: 5px;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow:
    inset 0 0 0 1px #ccc,
    2px 2px 6px rgba(0, 0, 0, 0.3);   
} 

.searchThumb {
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px #ccc,
    2px 2px 6px rgba(0, 0, 0, 0.3);   
}
/*
.imageDiv img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 8px;
  margin-right: 5px;
}
*/
.slider-block {
    list-style: none;
}

.arrow-left,
.arrow-right {
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0.3;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-left:hover,
.arrow-right:hover {
  opacity: 0.6;
}

.arrow-left span,
.arrow-right span {
  display: inline-block;
  font-size: 20px;       /* Base font size */
  transform: scaleY(2.5); /* Scale arrow height to match 60px */
  line-height: 1;
}

.arrow-left {
  left: -30px;
}

.arrow-right {
  right: -30px;
} 

/* end slider */


ul.menu-thumbs {
  position: relative;
  /* padding-left: 2.5em; */
  /*padding-left: 40px;*/
  list-style: disc;
  /*width: 82%;*/
  margin-top: 10px;
  margin-left: -7px;
}

ul.menu-thumbs li {
  position: relative;
  /* margin-bottom: 0.8em; */
  margin-bottom: 13px;
  /* left: 1em; */
  left: 16px;
  padding-left: 3px;
  background-color: #fff;

}

ul.menu-thumbs li.has-thumb {
  list-style-type: none;
  min-height: 34px;
  /*padding-left: 5px;*/
}

li > a.shiftThumb {
  position: absolute;
  /* top: 0.1em; */
  top: 2px;
  /* left: -3.5em; */
  /*left: -56px;*/
  left: -44px;
  display: inline-block;
  pointer-events: auto;
}

li > a.shiftThumb img {
  width: 32px;
  height: 32px;
  border-radius: 25%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  border: solid 1px #999;
}

li > a.shiftThumb:hover img {
  opacity: 1;
} 

.textWrap {
  /* max-height: 7em;*/
  max-height: 9em;
  /*overflow: hidden;*/
  position: relative;
  line-height: 1.5em;
}

.textWrap::before {
  content: "";
  position: absolute;
  top: -10px; /* How much to cover up */
  left: 0;
  width: 100%;
  height: 1em;
  background: white; /* match the background of the page or section */
  z-index: 1;
  pointer-events: none;
}


.textWrap.truncated::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5em;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(0.5px);
  pointer-events: none;
}

.textWrap .more-indicator {
	display: none;
	/*	display: inline-block !important;*/
	position: absolute;
	right: 0.5em;
	/*bottom: -1.6em;  adjust to overlap the fading area */
	bottom: 0.4em; /* adjust to overlap the fading area */
	font-weight: bold;
	font-size: 0.9em;
	/*color: #3366cc;*/
	color: #222222;
	cursor: pointer;
	background-color: #d0ffbf;
	padding: 0 0.4em;
	border-radius: 0.3em;
	z-index: 2000;
	border: solid 1px #ccc;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
	opacity: 0.60;
	transition: opacity 0.3s ease;
	margin-right: 10px;
} 

.textWrap.truncated .more-indicator{
	display: inline-block;
}

.textWrap .more-indicator:hover
{
	opacity: 1;
}

/*
.plusWrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  transform: translateY(-0.3em);
  background: white;
  padding: 0 0.2em;
  font-weight: bold;
  cursor: pointer;
} 
*/

.contentpaneopen{
	position: relative;
}

.contentpaneopen .topUL{
	/*width: 85%;*/
}

.menuChildrenContainer {
	width: 95%;                  /* Set the desired max width */
	box-sizing: border-box;        /* Include padding/border in the width */
	white-space: normal;           /* Allow natural line wrapping */
	word-wrap: break-word;         /* Legacy support for long words/URLs */
	overflow-wrap: break-word;     /* Modern support for wrapping long words */ 	
	/*border: solid 1px #ccc;*/
}


  /*position: relative;*/
/*
.meta-tooltip-icon {
  text-decoration: none;
  cursor: pointer;
}

.meta-tooltip-icon .meta-tooltip {
	display: none;
}

.meta-tooltip-icon.active .meta-tooltip {
  display: block;
}

.meta-tooltip {
    background: none repeat scroll 0 0 #fefefe;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #222;
    display: none;
    font-size: 13px;
    //left: -300px;
	left: 50%;
	transform: translateX(-50%); 
	line-height: 1.5;
    max-width: 650px;
    padding: 10px 12px;
    position: absolute;
    //top: -14em;
	bottom: 1.5em; 	
    white-space: normal;
    width: clamp(150px, 40%, 700px);
	min-width: 150px;
    z-index: 999;
}

.theLI .meta-tooltip {
  left: 50%;
  transform: translateX(-50%);
}
*/