changelog-view {
    display: block;
    width: 100%;
    color: #6E4A4A;
    font-size: 16px;
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

changelog-view .changelog-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

changelog-view .changelog-entry {
    border: 1px solid #E8D7D7;
    border-radius: 4px;
    padding: 1rem;
    background: #FBF9F9;
    transition: all 0.3s ease;
}

changelog-view .changelog-entry:hover {
    border-color: #702A2A;
    background: #F5F2F2;
    box-shadow: 0 2px 8px rgba(112, 42, 42, 0.1);
}

changelog-view .changelog-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

changelog-view .changelog-hash {
    font-family: monospace;
    background: #E8D7D7;
    color: #702A2A;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: default;
}

changelog-view .changelog-branch {
    background: #2a5b70;
    color: #FFF;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: default;
}

changelog-view .changelog-date {
    color: #999;
    font-size: 0.9em;
    font-weight: 500;
}

changelog-view .changelog-author {
    color: #999;
    font-size: 0.85em;
    margin-left: auto;
}

changelog-view .changelog-message {
    color: #6E4A4A;
    line-height: 1.5;
    font-size: 0.95em;
    word-wrap: break-word;
}

/* Mobile responsive */
@media (max-width: 768px) {
    changelog-view {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }

    changelog-view .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    changelog-view .changelog-author {
        margin-left: 0;
    }

    changelog-view .changelog-entry {
        padding: 0.75rem;
    }

    changelog-view .changelog-container {
        gap: 0.75rem;
    }
}