body {    font-family: Arial, sans-serif;    display: flex;    flex-direction: column;    justify-content: center;    align-items: center;    height: 100vh;    margin: 0;    text-align: center;    padding: 10px;}form {    display: flex;    flex-direction: column;    width: 100%;    max-width: 400px;    margin-top: 20px;}label {    margin-top: 10px;}input[type="text"], input[type="date"], input[type="submit"] {    padding: 10px;    margin-top: 5px;    font-size: 16px;}input[type="submit"] {    background-color: #4CAF50;    color: white;    border: none;    cursor: pointer;}input[type="submit"]:hover {    background-color: #45a049;}img {    width: 50%; /* Réduire la taille de l'image à 50% de la largeur maximale */    height: auto;    margin-top: 20px; /* Ajouter de l'espace en haut */    margin-bottom: 20px; /* Ajouter de l'espace en bas */    object-fit: cover; /* Pour s'assurer que l'image garde ses proportions */}.container {    display: flex;    flex-direction: column;    justify-content: center;    align-items: center;    text-align: center;    width: 100%;    max-width: 600px;}#suggestions ul {    list-style-type: none;    padding: 0;    margin: 0;    border: 1px solid #ddd;    max-height: 150px;    overflow-y: auto;}#suggestions li {    padding: 10px;    cursor: pointer;    border-bottom: 1px solid #ddd;}#suggestions li:hover {    background-color: #f0f0f0;}.tradingview-widget-container {    margin-top: 20px;    text-align: center;}.links {    display: flex;    justify-content: space-around;    margin-top: 20px;    width: 100%;    max-width: 600px;}.links a {    text-decoration: none;    color: #007BFF;    font-weight: bold;    margin: 0 10px;}.links a:hover {    text-decoration: underline;}