
/* Styles "Orange Business" */
:root {
	--primary-orange: #f16e00; /* Orange vif */
	--dark-bg: #333333;
	--light-bg: #FFFFFF;
	--text-color: #333333;
	--text-light: #FFFFFF;
	 text-align: justify;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.7;
	padding: 20px;
	max-width: 900px;
	margin: auto;
	color: var(--text-color);
}

h1 {
	text-align: center;
	color: var(--primary-orange);
	font-size: 2.2em;
	margin-bottom: 30px;
}

h2, h3 {
	color: var(--primary-orange);
	border-bottom: 2px solid var(--primary-orange);
	padding-bottom: 5px;
	margin-top: 30px;
}

.company-name {
	font-weight: bold;
	color: var(--dark-bg);
}

/* Table des matières 2 colonnes*/
.toc {
	background-color: #f7f7f7;
	border: 1px solid #ddd;
	padding: 20px;
	margin-bottom: 40px;
	border-left: 5px solid var(--primary-orange);
}

.toc h2 {
	margin-top: 0;
	border: none;
	color: var(--dark-bg);
}

.toc ul {
	list-style: none;
	padding: 0;
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}

.toc li {
	margin-bottom: 5px;
}

.toc a {
	color: var(--text-color);
	text-decoration: none;
}

.toc a:hover {
	text-decoration: underline;
	color: var(--primary-orange);
}

/* Table des matières 1 colonne*/
.toc1 {
	background-color: #f7f7f7;
	border: 1px solid #ddd;
	padding: 20px;
	margin-bottom: 40px;
	border-left: 5px solid var(--primary-orange);
}

.toc1 h2 {
	margin-top: 0;
	border: none;
	color: var(--dark-bg);
}

.toc1 ul {
	list-style: none;
	padding: 0;
	columns: 2;
	-webkit-columns: 1;
	-moz-columns: 1;
}

.toc1 li {
	margin-bottom: 5px;
}

.toc1 a {
	color: var(--text-color);
	text-decoration: none;
}

.toc1 a:hover {
	text-decoration: underline;
	color: var(--primary-orange);
}

/* Styles pour les tableaux */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.table-compact th, 
.table-compact td {
    border: 1px solid #ddd;
	padding: 12px 15px;
	text-align: left;
    font-size: 0.65em; /* Texte plus petit */
}

th, td {
	border: 1px solid #ddd;
	padding: 12px 15px;
	text-align: left;
	font-size: 0.9em;
}

th {
	background-color: var(--primary-orange);
	color: var(--text-light);
	font-weight: bold;
	text-transform: uppercase;
}

tr:nth-child(even) {
	background-color: #f9f9f9;
}


/* Styles des listes à puces */
.list-style-none {
	list-style: none;
	padding-left: 0;
}

.list-style-none li {
	text-indent: 0; /* Indentation négative pour le tiret */
	padding-left: 1.5em;
}

.list-style-none li::before {
	content: "\2022"; 
	color: var(--primary-orange);
	font-weight: bold;
	display: inline-block;
	width: 1.5em;
	margin-left: -1.5em;
}