/*
 Theme Name:   Repond Mail
 Description:  bootScore Child Theme
 Author:       bootScore
 Author URI:   https://bootscore.me
 Template:     bootscore-main
 Version:      5.3.0
 Text Domain:  bootscore
*/

/* 
All style editing is done via scss/_bscore_custom.scss
*/
@import url("/assets/css/LyneaSans.css");
:root {
	--ldo-gray: #39414c;
	--ldo-red: #e4022a;
	--rsvp: #152943;
}

html,
body {
	font-family: "LyneaSans", Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 105%;
	font-weight: 300;
}
/* =========================================================
   Scaling globale opzionale (se vuoi applicarlo all'intera pagina)
   ========================================================= */

a {
	color: #ffffff;
	font-weight: 800;
}

.x-small {
	font-size: 0.655em;
}

.ldo-gray {
	color: var(--ldo-gray);
}
.bg-ldo-gray {
	background-color: var(--ldo-gray);
}
.ldo-red {
	color: var(--ldo-red);
}
.bg-ldo-red {
	background-color: var(--ldo-red);
}

.has-error label {
	color: red !important;
}
.has-success {
	color: green;
}

/* Custom Navbar Colors */
.navbar-custom {
	background-color: var(
		--bs-secondary
	); /* Replace with your desired background color */
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
	color: #ffffff; /* Replace with your desired text color */
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-brand:active,
.navbar-custom .navbar-nav .nav-link:active {
	color: #ffffff; /* Replace with your desired text color */
}
.navbar-custom .navbar-toggler-icon {
	background-color: #ffffff; /* Replace with your desired color for the toggler icon */
}

.navbar-custom .navbar-toggler {
	border-color: #ffffff; /* Replace with your desired border color for the toggler button */
}

@media print {
	@page {
		size: A4; /* DIN A4 standard, Europe */
		margin: 5mm;
		/* margin-top: 30mm; */
	}
	.site-content {
		margin-top: 0;
	}
	.container {
		max-width: 100%;
	}
	.table > :not(caption) > * > * {
		font-size: 13px;
		padding: 0.3rem 0.3rem;
	}
}