.action {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.car-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.car-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.car-information {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    margin: auto;
}

.owner-wrapper {
    display: flex;
    padding-bottom: 30px;
    gap: 20px;
    align-items: center;
}

.profile-image img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.car-posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.car-post img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.car-sale-interaction {
    display: flex;
    gap: 10px;
}

.car-sale-interaction a img {
    width: 90px;
    height: 90px;
    transition: 0.3s;
}

.car-sale-interaction a img:hover {
    transform: scale(1.1);
}