/* Veille.css */

/* Styles spécifiques pour les images dans le tableau des outils de veille */
.tool-image {
    max-width: 30px;
    max-height: 30px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #000F5B;
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    margin: 0;
}

.right-section {
    display: flex;
}

.right-section a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.main-content {
    padding: 20px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    margin-top: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

img {
    max-width: 300px;
    max-height: 250px;
}

.filters {
    margin-bottom: 20px;
}

.filters label {
    margin-right: 10px;
}

.filters select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    cursor: pointer;
    outline: none;
}

.article-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 125px; /* Ajout de marges négatives pour rapprocher les blocs */
}

.article {
    width: calc(33.33% - 20px); /* 33.33% pour afficher 3 blocs côte à côte */
    background-color: #f2f2f2;
    margin: 15px; /* Espacement entre les blocs */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.article:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* Styles pour les images des articles */
.article img {
    width: auto; /* Largeur fixe */
    height: auto; /* Hauteur fixe */
    display: block; /* Permet de centrer l'image */
    margin: 0 auto; /* Centre l'image horizontalement */
    border-radius: 5px;
}


.article h3 {
    margin-top: 10px;
}

.article p {
    margin: 5px 0;
}

.article a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.article a:hover {
    background-color: #555;
}
