.respgrid {
    background-color: #003D2000;
    border-color: #f5f5f5;
    border-radius: 12px;
}

.respitem {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.respitem:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5 !important; /* Changer la couleur de fond au survol */
    color: #333; /* Changer la couleur du texte */
    transition: background-color 0.3s ease; /* Animation fluide */
}

.respitem .content {
    padding: 12px;
}

.respitem h3 {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin: 5px 0;
}

.respitem p {
    font-size: 14px;
    color: #666;
    margin: 2px 0;
}

.respitem .title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-top: 8px;
}
