.simple-link-preview {
    display: flex;
    border: 1px solid #ddd;
    padding: 10px;
    max-width: 500px;
    font-family: Arial, sans-serif;
    background: #fafafa;
    border-radius: 5px;
    margin-bottom: 15px;
}
.simple-link-preview .preview-image {
    flex: 0 0 120px;
    margin-right: 10px;
}
.simple-link-preview .preview-image img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    border-radius: 4px;
}
.simple-link-preview .preview-content {
    flex: 1;
}
.simple-link-preview .preview-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #0073aa;
    text-decoration: none;
}
.simple-link-preview .preview-title:hover {
    text-decoration: underline;
}
.simple-link-preview .preview-description {
    margin: 5px 0;
    color: #333;
    font-size: 0.9em;
}
.simple-link-preview .preview-url {
    font-size: 0.8em;
    color: #666;
}
