.release-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.voltar-btn, .header-button {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.voltar-btn {
    background-color: var(--primary-color);
}

.header-button.instalador {
    background-color: #4285f4;
}

.header-button.atualizador {
    background-color: #34a853;
}

.release-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.release-item h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.release-section {
    margin: 1rem 0;
}

.release-section h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.release-section ul {
    list-style: none;
    padding-left: 1rem;
}

.release-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.release-section li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Estilos para as seções de release */
.release-section h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: #333;
}

.release-section li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Estilo para os códigos de referência */
.release-section li strong {
    color: #4285f4;
    font-weight: 600;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .release-buttons {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

/* Estilo para avisos importantes */
.notice {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
}

.notice p {
    color: #856404;
    margin: 0.5rem 0;
}

.notice p:first-child {
    font-weight: bold;
}

/* Estilo para links de download */
.download-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: #e8f0fe;
    margin-left: 8px;
}

.download-link:hover {
    background-color: #d2e3fc;
    text-decoration: underline;
} 

.label-badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    margin-right: 10px;
    color: white;
    font-family: Arial, sans-serif;
}

/* Cores específicas */
.label-novo {
    background-color: #17c671; /* verde */
}

.label-ajuste {
    background-color: #ffc107; /* amarelo */
    color: black;
}

.label-bug {
    background-color: #dc3545; /* vermelho */
}
