body {
    background-image: url('assets/fond-ecran.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.answer-option {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}
.answer-option:hover {
    background-color: #f0f8ff;
}
.answer-option.selected {
    background-color: #d4edda;
    border-color: #28a745;
}
.answer-option input[type="radio"] {
    display: none;
}
.card.custom-responsive {
	width: 100%;
}

@media (max-width: 992px) {
	.container {
		max-width: 100% !important;
		padding-left: 10px;
		padding-right: 10px;
		}
}
@media (min-width: 800px){
	.custom-modal {
		max-width: 90%;
		max-height: 80%;
	}
}
