#obituario {
    padding-top: 100px;
    padding-bottom: 100px;
}

#obituario .obituary-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#obituario .obituary-item img {
    width: 100%;
    height: 250px; /* Altura maior que a largura */
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

#obituario .obituary-item:hover img {
    filter: grayscale(0); /* Remove o efeito grayscale ao passar o mouse */
}

#obituario .obituary-info {
    position: absolute;
    bottom: 0; /* Fixa a parte inferior da imagem */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Fundo preto com opacidade */
    color: white;
    text-align: center;
    padding: 10px; /* Espaçamento interno */
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

#obituario .obituary-item:hover .obituary-info {
    opacity: 1;
}

#obituario .obituary-info h5,
#obituario .obituary-info p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.not-found {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.not-found h5 {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    font-weight: 400;
}

#obituario .obituary-info p.obituary-description {
    margin-top: 10px;
    font-size: 12px; /* Ajusta o tamanho da fonte para a descrição */
    line-height: 1.4;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    color: #007bff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination li a:hover {
    background-color: #007bff;
    color: #fff;
}

.pagination li.active span {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination li.disabled span {
    background-color: #e9ecef;
    color: #6c757d;
    border-color: #dee2e6;
}

@media (max-width: 768px) {
    #obituario .obituary-item img {
        height: 350px; /* Altura maior que a largura */
    }
}

/* Estilo para o separador */
.section-separator {
    border-top: 1px solid #ddd;
    margin: 2rem 0; /* Espaçamento vertical */
}

/* Espaçamento para as seções */
.note,
.tribute-card {
    margin-bottom: 1.5rem; /* Ajuste de espaçamento */
}

.input-group-append {
    display: flex;
    align-items: center;
    margin-left: -1px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
}
.form-control {
    border-radius: 0.25rem;
    background-color: #e9ecef;
}
