.login-logo img{
	width: 100%;
}
.ts-menu-item i{
	margin-right: 1em;
}
.mht-100{
	max-height: 150px;
}
.help-block{
	color : #ff0000;
	margin-left: 0.2rem;
}
.table-hover tbody tr:hover {
    background-color: #cfdae8;
}
.auto-comp{
	z-index:999; 
	position:absolute; 
	cursor: pointer; 
	height: 200px; 
	overflow: auto;
	width: 98%;
}
.auto-comp li:hover{
	background: #eee;
}
.revenue h4{
	font-weight: 600;
}
@media all and (display-mode: standalone) {
  body {
    background-color: yellow;
  }
}


@media (max-width: 575.98px) { 
	.embed-responsive{
		min-height: 520px;
	}
	.auto-comp{
		width: 88%;
	}
}

@media (max-width: 767.98px) { 
	.embed-responsive{
		min-height: 550px;
	}
	.auto-comp{
		width: 93%;
	}
}

@media (max-width: 991.98px) { 
	.embed-responsive{
		min-height: 580px;
	}
}

@media (max-width: 1199.98px) { 
	.embed-responsive{
		min-height: 600px;
	}
}

/* Page Loader Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ffc107; /* Warning color to match DSR theme */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

