.product-imei-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 270px;
    background: rgba(255, 255, 255, 0.80); /* More transparency */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    pointer-events: auto; /* Ensure clicks work inside */
}

.check-date {
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}


.imei-org-header {
    text-align: center;
    margin-bottom: 10px;
    pointer-events: none; /* Disable clicking */
}

.imei-info-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.imei-info-table td {
    padding: 5px;
}

.woocommerce ul.products li.product {
    position: relative;
    overflow: visible !important;
}

/* Show overlay on hover */
.woocommerce ul.products li.product:hover .product-imei-overlay {
    display: flex !important;
}
