/* Table Styles */
.wcvt-table-wrap {
    margin: 30px 0;
    font-family: var(--bzo-body_typo-font-family);
    background: #E2F5FB;
    border-radius: 15px;
    overflow: hidden;
}
.wcvt-table-wrap, .woocommerce-Price-amount, .woocommerce .wcvt-additional-attributes-table .wcvt-table th {
    color: #226377;
}
.wcvt-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: none;
}

/* Table header styles */
.wcvt-table th {
    padding: 12px;
    text-align: left;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
}
/* Table cell styles */
.wcvt-table td {
    padding: 8px 10px;
    text-align: center;
    border: none;
}
.wcvt-table th, .wcvt-table td {
    border-bottom: 1px solid rgb(23 65 79 / 3%);
}

/* Button Styling */
.wcvt-add-to-cart {
    background-color: var(--bzo-main-color2);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 14px;
}

.wcvt-add-to-cart:hover {
   /* background-color: #005f8a;*/
    background-color: #1e9dc8;
    
}

.wcvt-add-to-cart:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Loading Effect Styling */
.wcvt-add-to-cart[disabled] {
    position: relative;
}

.wcvt-add-to-cart[disabled]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-top: 4px solid #007cba;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.wcvt-table select {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==);
    height: auto;
    line-height: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    background-position: right 10px top 50%;
    background-size: auto 18px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 100px;
}
.wcvt-table-header {
    font-size: 20px;
    color: #FFF;
    text-align: center;
    padding: 15px;
    background: var(--bzo-main-color2);
    font-family: var(--bzo-title_typo-font-family);
}
.wcvt-table-wrap .wcvt-table thead {
    background-color: #17414f1c;
}

.wcvt-additional-attributes-table {
    margin-top: 10px;
}

.woocommerce .wcvt-additional-attributes-table .wcvt-table td, 
.woocommerce .wcvt-additional-attributes-table .wcvt-table th {
    padding: 5px 0;
    text-align: left;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.105);
    background: transparent !important;
    font-style: normal;
}
.woocommerce .wcvt-additional-attributes-table .wcvt-table td:first-child {
    font-weight: bold;
    color: var(--bzo-title-color);
}
.woocommerce .wcvt-additional-attributes-table .wcvt-table th {
    width: 40%;
}
.product-tab-content .detail-tab-desc>h2 {
    display: block !important;
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Styles */
@media (min-width: 769px) {
    .wcvt-add-to-cart {
        min-width: 169px;
    }
}
@media (max-width: 768px) {
    .wcvt-table {
        font-size: 14px;
        line-height: 1.3em;
    }
    .wcvt-add-to-cart {
        width: 100%;
        padding: 8px;
        font-size: 10px;
    }
    .wcvt-table th, .wcvt-table td {
        font-size: 14px;
        padding: 5px;
        vertical-align: middle;
    }
    .wcvt-table select {
        font-size: 14px;
        padding: 0 5px;
        line-height: 25px;
        border-radius: 5px;
        background-position: right 5px top 50%;
    }
}
@media (max-width: 400px) {
    .wcvt-table th, .wcvt-table td {
        font-size: 12px;
    }
    .wcvt-add-to-cart {
        padding: 5px;
    }
}