.wcvm-container .wcvm-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.wcvm-container .wcvm-search-form {
    margin: 10px auto;
    display: flex;
}
.wcvm-results-headline h4 {
    margin-top: 30px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.wcvm-container .wcvm-product {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}
.wcvm-product-thumb img {
    max-width: 72px;
    max-height: 72px;
    padding: 2px;
    border: 1px solid #ccc;
}
.wcvm-loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #4F6B3E;
    border-right: 6px solid #4F6B3E;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 20px auto;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.wcvm-waitmsg {
    text-align: center;
}
.wcvm-search-msg {
    text-align: center;
    line-height: 2;
}
.wcvm-alert-msg {
    margin: 20px 0;
    text-align: center;
}
.wcvm-alert-msg .no-found-msg {
    color: #ff0000;
}
.wcvm-search-again {
    text-align: center;
    margin: 20px 0;
}
.wcvm-search-btn,
.wcvm-try-again {
    margin-top: 15px;
}
