   .camera-container {
      /*max-width: 800px;*/
      margin: auto;
      background: #fff;
      /*border-radius: 12px;*/
      /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
      overflow: hidden;
    }

    .tabs {
      display: flex;
      border-bottom:1px solid var(--white);
    }

    .tab {
      flex: 1;
      padding: 20px;
      cursor: pointer;
      background: var(--white);
      border: none;
	  font-family:var(--font-bold);
      transition: background 0.3s;
    }

    .tab.active {
      background:  var(--primary-color);
      color: white;
    }

    .image-viewer {
      position: relative;
	  height: 450px;
	  padding:0;
	  margin:0;
      display: flex;
      align-items: center;
      justify-content: center;
	   
	  
    }

    .image-viewer img {
      max-width: 100%;
      max-height: 100%;
      display: block;
	  width: 100%;
	   
	  
	   
    }

    .slider-container {
      position: relative;
	  padding: 20px;
       
    }

    input[type="range"] {
      width: 100%;
      cursor: pointer;
}
 
  
    .tooltip {
      position: absolute;
      background: #333;
      color: #fff;
      padding: 5px 8px;
      border-radius: 4px;
      font-size: 12px;
      transform: translateX(-50%);
      display: none;
 top:-15px;
	  height:30px;
	  width:80px;
	  text-align:center;
	  line-height:normal;
    }
	
 /**************/
 
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #ccc; /* Track background */
  border-radius: 5px;
  outline: none;
  
}

/* Thumb (circle) */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color); /* Circle color */
  border: 2px solid #fff; /* Optional white border */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: grab;
  transition: background 0.3s, transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
  background: #004aad; /* Active circle color */
}

/* Firefox thumb */
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 2px solid #fff;
  cursor: grab;
}