/* Product Specs Table Styles */

.ndv-product-specs-table {
    width: 100%;
    border-collapse: separate;
    /* Changed to support border-spacing and radius */
    border-spacing: 0;
    margin-bottom: 20px;
}

.ndv-product-specs-table th,
.ndv-product-specs-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.ndv-product-specs-table th {
    font-weight: 600;
    width: 40%;
    /* Default width, can be overridden */
}

/* Skeleton Loading State */
.ndv-dynamic-data {
    display: inline-block;
    min-width: 50px;
    /* Ensure visibility if empty */
    transition: all 0.3s ease;
    border-radius: 4px;
}

.ndv-skeleton {
    color: transparent !important;
    background: #f0f0f0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: ndv-skeleton-loading 1.5s infinite;
    cursor: default;
    user-select: none;
}

.ndv-skeleton * {
    visibility: hidden;
}

@keyframes ndv-skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* EU Row */
.ndv-eu-availability-row {
    background-color: #f9f9f9;
}

.ndv-eu-message a {
    text-decoration: underline;
    font-weight: bold;
}