body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: #004a99; /* Bleu foncé suisse */
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #004a99;
}

/* Style de la barre de recherche */
.search-bar {
    text-align: center;
    padding: 30px 0;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#search-input {
    width: 60%;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #d11319; /* Rouge suisse */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #a30e13;
}

/* Style des cartes d'aperçu */
.latest-decisions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.summary-card {
    flex: 1 1 calc(50% - 20px); 
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.summary-card a {
    text-decoration: none;
    color: #004a99;
}

.summary-card a:hover {
    text-decoration: underline;
}

/* Style de la fiche d'arrêt détaillée */
.decision-details {
    padding: 30px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 40px;
}

.meta-data p {
    background-color: #eaf0f6;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 4px;
    margin-right: 15px;
    font-size: 0.9em;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    color: #666;
}