/* CSS */
.container {
padding-left: 40px !important;
padding-right: 40px !important;
width:100%;
}

.mb-inter-filter {
height:80px !important;
margin-top:-21px;
}
.qvtittle {
height:100px !important;
text-align: center;
margin: 15px 5px 15px 0;
}

.qvdate {
height:80px !important;
margin-top:-21px;
text-align: center;
margin-left:10px;
}

.qvgraphic1 {
/*border-style: solid;
border-width: 1.5px;
border-color: #e6e6e6;
border-radius: 5px;*/
margin-top: 0;
margin-bottom: 40px;
}

.qvobject2 {
height: 440px;
display: flex;
align-items: center;
flex-direction: column;
box-sizing: border-box;
z-index:1;
flex: 1 1 auto;

}



@media screen and (width: 360px)  {
.qvobject2 {
    height: 330px !important;
	width: 100%;
	display: flex;
  }
}

@media screen and (width: 375px)  {
.qvobject2 {
    height: 390px !important;
	width: 100%;
	display: flex;
  }
}

/* Botones descarga y eliminar*/


#buttonQV04 {
    font-size: 18px;
	font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    border-style: solid;
	border-width: 1.5px;
	border-color: #d9d9d9;
	border-radius: 3px;
    background-color: #FFFFFF;
    color: #595959;
	margin: 10px 5px;
}

#buttonQV04:hover {
  border-color: #595959;
}

#qcmd {
    font-size: 18px;
	font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    border-style: solid;
	border-width: 1.5px;
	border-color: #d9d9d9;
	border-radius: 3px;
    background-color: #FFFFFF;
    color: #595959;
	margin: 10px 5px;
}

#qcmd:hover {
  border-color: #595959;
}

/* Date picker: 
Cambiar el valor antes de '_content' por el ID del date picker.*/

#jFwdrP_content{
	font-weight: bold;
	font-size: 13px;
	
	display:flex;
	
	height:88%;

	padding: 5px 10px; 

	border-style: solid;
	border-width: 1.5px;
	border-color: #d9d9d9;
	border-radius: 3px;

}

#jFwdrP_content:hover{
	border-color: #595959;
}

/* Variables de personalización barra de carga */
        :root {
            --primary-color: #007ACC;
            --bg-color: #f8f9fa;
            --text-color: #2c3e50;
            --progress-bg: #e9ecef;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Pantalla de carga */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-color);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            transition: opacity 0.4s ease-out;
        }

        #loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        /* Contenedor del loader */
        .loader-container {
            background: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        /* Spinner */
        .spinner {
            width: 48px;
            height: 48px;
            border: 3px solid var(--progress-bg);
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 24px;
        }

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

        /* Textos */
        .loading-title {
            color: var(--text-color);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .loading-subtitle {
            color: var(--text-color);
            font-size: 14px;
            opacity: 0.7;
            margin-bottom: 32px;
        }

        /* Barra de progreso */
        .progress-container {
            width: 100%;
            height: 6px;
            background: var(--progress-bg);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--primary-color), #00a8ff);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        /* Info de progreso */
        .progress-info {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-color);
            opacity: 0.8;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .loader-container {
                padding: 32px 24px;
                margin: 20px;
            }
        }
