/* Estilos para a linha do tempo */
.timeline {
    position: relative;
    margin: 20px 0;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 20px 0;
    padding: 10px 20px;
    width: 50%;
}

.timeline-meta {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}


.timeline-item:nth-child(odd) .timeline-marker{
    left: 100%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker{
    left: 0%;
    text-align: left;
}


.timeline-marker {
    position: absolute;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #0073aa; /* Cor do marcador */
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    width: 100%;
    display: inline-block;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.timeline-content .timeline-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.timeline-content .timeline-description {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.delete-post-btn {
    background-color: transparent !important;
}


.delete-post-btn:hover {
    background-color: #fff !important;
}

.timeline-item:nth-child(odd) .delete-post-btn{
    left: 100%;
    float: left;
}

.timeline-item:nth-child(even) .delete-post-btn{
    left: 0%;
    float: right;
}