/* ===== Overlay (unchanged) ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

/* ===== Popup Box (75% of screen) ===== */
.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 75vw;     /* 75% of screen width */
    height: 95vh;    /* 75% of screen height */

    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.popup-progress {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 5px 5px 2px #337ab7;
	border-radius: 10px; 
	padding-top: 2%;
	height:20vh;
	max-height: 20vh;
	min-height: 20vh;  
	width:50vw;
	max-width:50vw;
	min-width:50vw;
	display: none;
	z-index: 9999999999;
	background-color: #ffffff;
	opacity: 0.9;	
}

	/* ===== Close Button ===== */
	.close-btn {
		position: absolute;
		top: 12px;
		right: 12px;

		width: 32px;
		height: 32px;

		display: flex;
		align-items: center;
		justify-content: center;

		background: transparent;
		border: none;
		padding: 0;
		cursor: pointer;
	}

	/* Image inside button */
	.close-btn img {
		width: 50px;
		height: 50px;

		transition: transform 0.3s ease;
		transform-origin: center;
	}

	/* Rotate image only */
	.close-btn:hover img {
		transform: rotate(90deg);
	}

	/* ===== Open Animation ===== */
	@keyframes fadeInScale {
	from {
	opacity: 0;
	transform: scale(0.9);
	}
	to {
	opacity: 1;
	transform: scale(1);
	}
	}
	
.readonly{
	
}

.description-col {
    max-width: 100px !important;        /* fixed width */
	min-width: 100px !important;
	width: 100px !important;
    white-space: normal;     /* allow wrapping */
    word-wrap: break-word;   /* break long words */
    overflow-wrap: break-word;
}

.switch {
  position: relative;
  display: inline-block;
  /* width: 60px; */
  height: 30px;
  vertical-align:middle;

}

.switch input {display:none;}

.slider {
  /* position: absolute; */
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .9s;
  transition: .9s;
  height:30px;
  width:40px;
  font-size:75%;

}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #337ab7;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.input-group > .btn{
    height: auto !important;
    align-self: stretch;
}

#outputAccountSearch {

    overflow: auto;

}