/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.video-background-container {
    position: relative;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.video-background-container .wrapper {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
    background: rgba(0, 0, 0, 0.4); /* Un fondo oscuro semitransparente para mejor lectura */
    border-radius: 10px;
}


/**************** NOTIFICATION TOP STYLE *******************/
#notification_top {
	position: fixed;
	top: 60px; /* separa del header fijo */
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999; /* más alto que cualquier header de Bootstrap */
	width: 90%;
	max-width: 400px;
	padding: 0 10px;
	box-sizing: border-box;
	pointer-events: none; /* para que no bloquee clicks */
}

#notification_top .alert {
	pointer-events: auto; /* permite cerrar el alert */
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}




