.dsp-search-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}
.dsp-search-form label {
    display: block;
    margin-bottom: 5px;
}
.dsp-search-form input[type="text"],
.dsp-search-form input[type="date"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}
.dsp-search-form button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}
.dsp-search-form button:hover {
    background-color: #005a87;
}

.mfp-content .dsp-popup-content {
    width: 80%;
    max-width: 900px;
    padding: 20px;
    background: #fff;
    position: relative;
}

.mfp-bg {
    background: rgba(0, 0, 0, 0.8);
}
.mfp-close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1046;
    font-size: 24px;
    font-weight: bold;
}

.mfp-close:hover {
    background-color: #ff0000; /* Change this color to whatever you prefer */
}

#dsp-progress-wrapper {
    width: 100%;
    background-color: #f3f3f3;
    margin-top: 10px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
}

#dsp-progress-bar {
    height: 100%;
    width: 0;
    background-color: #4caf50;
    transition: width 0.4s ease;
}
#dsp-search-result img {
    margin-bottom: 20px;
}

#dsp-search-result button {
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
}
#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

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

.align-items-start{
	justify-content: center;
}
.printButton{
	display: block !important; 
	margin: 20px auto !important;
    width: 80% !important;
    background-color: #ff6700 !important;
    color: #ffffff !important;
    font-size: 16px !important;
}
.printImg{
	display: block; 
	margin: 0 auto; 
	max-width: 60%; 
	height: auto;
	margin-bottom: 100px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media(max-width: 767px){
	.printImg{
		max-width: 80%; 
	}
}