:root {
	--primary-color: #3f2563;
	--secundary-color: #000000;
	--error-color: #E11313;
	--active-color: #20c997;
}

body {
	font-family: 'Roboto', sans-serif;
}

.app-loader-backdrop {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.app-loader {
	background-color: white;
	padding: 2rem;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	max-width: 80%;
	text-align: center;
}

.app-loader-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #ccc;
	border-top: 4px solid #3f2563;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.app-loader-message {
	font-size: 1rem;
	color: var(--color-text);
}

.btn {
	background-color: var(--primary-color);
}

.btn:hover, .btn:focus {
	background-color: var(--primary-color);
	opacity: 0.5;
}

.disabled {
	pointer-events: none;
	opacity: 0.5;
}

header {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.btn-floating {
	position: fixed;
	top: 5.5rem;
	right: 1rem;
}

.dataTables_length {
  display: none;
}