body {
	background-color: #f8f9fa;
}

.table {
	margin-top: 20px;
}

.btn-custom {
	background-color: #007bff;
	color: white;
}

.form-title {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007bff; /* Color del fondo de la solapa */
	color: #fff; /* Color del texto */
	border-radius: 20px 20px 20px 20px; /* Bordes redondeados */
	position: relative;
	margin-left: auto;
	margin-bottom: 0;
	z-index: 10; /* Para asegurarse de que esté por encima del formulario */
}
.form-container {
	position: relative; /* Para permitir que la solapa se superponga */
	background-color: #f8f9fa; /* Color de fondo del formulario */
	border-radius: 10px; /* Bordes redondeados para el formulario */
	padding-top: 20px; /* Espacio en la parte superior para la solapa */
}
/* Estilo básico para el modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1050;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	background: rgba(0, 0, 0, 0.5);
}
.modal-dialog {
	position: relative;
	width: auto;
	margin: 1.75rem auto;
	max-width: 500px;
}
.modal-content {
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.3rem;
	padding: 1.5rem;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.modal-body {
	padding: 1rem;
}
.close {
	background: none;
	border: none;
	font-size: 1.5rem;
}
