/* Mise en page générale */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    text-align: center;
    color: #2c3e50;
}

/* Section des détails de l'animal */
.animal-details {
    margin-bottom: 30px;
}

.animal-details table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.animal-details th, .animal-details td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.animal-details th {
    background-color: #2980b9;
    color: white;
}

.animal-details td {
    background-color: #ecf0f1;
}

.animal-details tr:hover td {
    background-color: #dfe6e9;
}

/* Section des vaccins et maladies */
.section-title {
    background-color: #2980b9;
    color: white;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}

.section-content {
    padding: 20px;
}

.section-content table {
    width: 100%;
    border-collapse: collapse;
}

.section-content th, .section-content td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.section-content th {
    background-color: #3498db;
    color: white;
}

.section-content td {
    background-color: #ecf0f1;
}

.section-content tr:hover td {
    background-color: #dfe6e9;
}

/* Changer le fond et la couleur du texte au survol du bouton d'accordéon */
.card-header .btn-link {
    color: #007bff; /* Couleur du texte par défaut */
}

.card-header .btn-link:hover {
    color: #ffffff; /* Couleur du texte au survol */
    background-color: #007bff; /* Changer la couleur de fond au survol */
    text-decoration: none; /* Enlever la sous-ligne */
}

/* Modifier l'apparence du bouton d'accordéon pour le rendre plus visible */
.card-header .btn-link:focus {
    box-shadow: none; /* Enlever l'ombre du bouton au focus */
}

