/*
	Theme Name: Hello Elementor Child
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Child theme for Hello Elementor
	Author: Batela Marketing
	Author URI: https://batelamarketing.eus
	Template: hello-elementor
	Version: 1.0.0
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor-child
*/

/* Aquí puedes añadir tu CSS personalizado */
::selection {
  color: #fff;
  background: #e3001b;
}

.texto-rojo {
	color: #e3001b;
}

#job-manager-job-dashboard.alignwide {
    margin-inline: 0;
}

.filtro-documentos {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.filtro-documentos button {
	padding: 10px 15px!important;
	font-size: 14px;
}

.tabla-documentos {
	font-size: 16px;
}
.tabla-documentos th,
.tabla-documentos td {
	text-align: left;
	padding: 10px 15px;
}

@media (max-width: 767px) {
	.filtro-documentos {
		flex-direction: column;
		gap: 5px;
	}

	.tabla-documentos thead {
		display: none;
	}

	.tabla-documentos,
	.tabla-documentos tbody,
	.tabla-documentos tr,
	.tabla-documentos td {
		display: block;
		width: 100%;
	}

	.tabla-documentos tr {
		margin-bottom: 1rem;
		border: 1px solid #CCC;
		border-radius: 5px;
		padding: 15px;
	}

	.tabla-documentos td {
		border: none;
		display: flex;
		justify-content: space-between;
		padding: 0;
		background-color: white!important;
	}

	.tabla-documentos td::before {
		content: attr(data-label);
		font-weight: 600;
	}
}