﻿#cgv-container {
    background-color: white;
    padding: 2em;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 8px;
    text-align: left;
}

caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 10px;
}

.cgv-title {
	text-transform: uppercase;
}

#back-to-top {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	width: 50px;
	height: 50px;
	border: none;
	outline: none;
	background-color: rgb(15, 116, 185);
	color: white;
	cursor: pointer;
	border-radius: 50%;
	font-size: 24px;
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

#back-to-top:hover {
	background-color: #0056b3;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

#back-to-top:active {
	transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
	#back-to-top {
		transition: none;
	}
}

.danger {
	color: #a60e15;
}