
h2 {
    margin: 0;
    font-size: 2.3em;
    margin-bottom: 10px;
    text-align: left;
}

.price-heading {
    font-size: 1.2em;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}


.post-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.post-image-container,
.post-info {
    flex: 1;
}


#use-picture-button {
    background-color: #040514; /* Dark background */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#use-picture-button:hover {
    background-color: #B9D9EB; /* Light background on hover */
}

/* Protecting images */
img {
    pointer-events: none;
}
