.delete-icon {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    transition: 0.3s;
}

.delete-icon:hover {
    transform: scale(1.1);
}

.info-wrapper {
    flex-basis: 70%;
}

.info-profile-wrapper {
    display: flex;
    padding: 50px 50px 10px;
}

.profile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 25%;
}
.profile-image img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.post-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.delete-icon-button {
    background: none;
    border: none;
    padding: 0;
}

.post-date {
    display: flex;
    opacity: 50%;
    justify-content: flex-end;
}
.image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.like-button, .dislike-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
}

.like-button img, .dislike-button img {
    width: 58px;
    height: 58px;
    transition: transform 0.2s ease;
}

.like-button:hover img, .dislike-button:hover img {
    transform: scale(1.1);
}

.interaction-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
}

.interaction-buttons {
    display: flex;
    flex-direction: row;
}

.comments-section {
    margin-top: 3rem;
    padding: 1.5rem;
    border-top: 1px solid #ccc;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-submit {
    background-color: #3498db;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-submit:hover {
    background-color: #2980b9;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-card {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: scale(1.03);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.comment-text {
    font-size: 1rem;
    line-height: 1.4;
}

a .like-button img {
    width: 100px;
    height: 100px;
}

.car-details-icon {
    transition: 0.3s;
}

.car-details-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.car-details-icon:hover {
    transform: scale(1.1);
}

textarea {
    background-color: var(--hover-accent);
    width: 100%;
    border: #466f69 solid 2px;
    border-radius: 30px;
    padding: 10px;
}