/* Image preview styling */
.upload-preview {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 0.5rem;
    border: 2px solid var(--pink-600);
}
/* Hidden file input */
.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* Better image messages */
img.message-image {
    max-width: 300px;
    border-radius: 12px;
    border: 2px solid var(--pink-600);
    margin-top: 0.5rem;
}