.changelog-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.changelog-card {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #9b59b6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.changelog-header h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.changelog-date {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.changelog-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.changelog-section {
    margin-bottom: 0.5rem;
}

.changelog-section h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #34495e;
    margin-bottom: 0.5rem;
    border-left: 3px solid #9b59b6;
    padding-left: 0.75rem;
}

.changelog-section ul {
    list-style-type: none;
    padding-left: 1.25rem;
}

.changelog-section li {
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.changelog-section li::before {
    content: "•";
    color: #9b59b6;
    font-weight: bold;
    position: absolute;
    left: -1.25rem;
}

.changelog-section code {
    background-color: #f1f1f1;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9rem;
}

.warning-text {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}