.card-img-top {
    object-fit: cover;
}
.results-count {
    margin-top: 10px;
    font-weight: bold;
}
.blog-title {
    font-weight: bold;
    color: #007bff;
    margin: 1rem 0;
    text-transform: uppercase;
    animation: fadeInSlideUp 3s ease-out;
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Faz com que o cartão ocupe toda a altura disponível */
}

/*Postagem*/
.contttainer{
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}
th {
    background-color: #007BFF;
    color: #fff;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #ddd;
}