    body {
        font-family: Arial, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
        background-color: #f0f2f5;
    }
        select:focus {
	    	border-color: #80bdff;
	    	outline: none;
	   	 	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        .selected-value {
            margin-top: 20px;
            padding: 10px;
            background-color: #f0f0f0;
            border-radius: 4px;
            display: none;
        }

	.table-responsive {
		max-height: 90%; /* Altura máxima del contenedor con scroll */
		overflow-y: auto;  /* Scroll vertical */
		/* Evita que las columnas se desalineen con el scroll */
		display: block;
        width: 100%; /* Define un ancho para la tabla */
        margin: 0 auto;  /* Centrar la tabla */		
	}

.posicionImagen {
        width: 200px;
        height: 30px;
        right: 5px;
        bottom: 5px;
        position: absolute;
        border-radius: 10px;
        filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.7));
    }
	
    label {
        display: block;
        margin-bottom: 10px;
        font-weight: normal;
        color: #333;
		font-size: 14px;
		margin-left: 10px; 
        }
    .container {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    th, td {
        padding: 6px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    th {
        background-color: #4CAF50;
        color: white;
    }
    tr:hover {
        background-color: #f5f5f5;
    }
    .btn {
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin: 2px;
    }

.btn-success {
    background-color: #28a745; /* Verde Bootstrap */
    color: white;
}

.btn-info {
    background-color: #17a2b8; /* Cyan Bootstrap */
    color: white;
}

.btn-warning {
    background-color: #ffc107; /* Amarillo Bootstrap */
    color: black;
}

.btn-primary {
    background-color: #007bff; /* Azul Bootstrap */
    color: white;
}

.btn-secondary {
    background-color: #6c757d; /* Gris Bootstrap */
    color: white;
}

.btn-danger {
    background-color: #dc3545; /* Rojo Bootstrap */
    color: white;
}

/* Efecto hover para cada botón */
.btn-success:hover,
.btn-info:hover,
.btn-warning:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-danger:hover {
    filter: brightness(85%);
    cursor: pointer;
}
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
    }
    .modal-content {
        background-color: white;
        margin: 15% auto;
        padding: 20px;
        border-radius: 8px;
        width: 80%;
        max-width: 500px;
    }
    .close {
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
    .form-group {
        margin-bottom: 15px;
    }
	
input[type="text"],
input[type="number"],
input[type="date"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

	textarea {
	    resize: vertical;
	    min-height: 100px;
	}
.form-group input:focus {
   	border-color: #80bdff;
   	outline: none;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}	
textarea:focus {
    border-color: #66afe9; /* Color celeste similar a Bootstrap */
    outline: none; /* Quita el borde predeterminado del navegador */
    box-shadow: 0 0 5px rgba(102, 175, 233, 0.6); /* Sombra ligera para efecto */
}


        .alert-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        .alert-box {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            width: 300px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .alert-box h2 {
            font-weight: bold;
            color: red;
            margin: 0;
        }

        .alert-box p {
            margin-top: 10px;
        }

        .alert-box span {
            font-size: 12px;
            color: gray;
            display: block;
            margin-top: 8px;
        }

        .alert-box button {
            margin-top: 15px;
            padding: 8px 12px;
            font-size: 12px;
            cursor: pointer;
        }

/*   Mensaje emergente de advertencia */
/* Estilos para la ventana modal */
.modalMsg {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
}

/* Contenedor de la ventana modal */
.modalMsg-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

/* Botón de cerrar dentro de la ventana */
.close-btn-Msg {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* fin */



