.like-button-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.like-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    height: 24px;
}
.like-button svg {
    width: 24px;
    height: 24px;
    fill: #e0245e;
    transition: transform 0.2s ease;
}
.like-button:hover svg {
    transform: scale(1.2);
}
.like-count {
    font-size: 16px;
}
