.selected-fabric-display {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
}

.selected-fabric-thumbnail {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    border-radius: 2px;
    vertical-align: middle;
}

.selected-fabric-name {
    vertical-align: middle;
}

/* Hover Preview Styles */
.fabric-hover-preview {
    display: none;
    position: fixed;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
    pointer-events: none;
}

.fabric-hover-preview .preview-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.fabric-hover-preview .preview-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.fabric-hover-preview .preview-name {
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
    color: #333;
}