.changelog-container {
    max-width: 800px;
    margin: 0 auto;
}

.version-card {
    background: rgb(0, 0, 0);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.latest-version-card{
    background: #000000;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.latest-version-card:hover,
.version-card:hover {
    box-shadow: 0 5px 15px #8797B2
}

.version-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #181818;
}

.latest-version-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #181818;
}

.version-number {
    font-size: 1.4rem;
    font-weight: 600;
}

.version-date {
    font-size: 0.9rem;
    margin-left: 10px;
}

.update-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.update-item {
    padding: 10px 0;
    display: flex;
    align-items: baseline;
    
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    color: #ffffff;
    font-size: 0.85rem;
    min-width: 110px;
    margin-right: 20px;
}


@media (max-width: 768px) {
    .update-date {
        min-width: 50px;
    }
}


.change-type {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
}

.Correcao { color: #FFFFFF}
.Melhoria { background: #0c0c0c; box-shadow: 0 1px 1px #ffffff}

.new-badge {
    background: #007B5F;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    position: absolute;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

h1 {
    line-height: 50%;
}