/**
 * Enoch Barcode Frontend Styles
 *
 * @package EnochWooBarcode
 */

/* Barcode Container */
.enoch-barcode-container {
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    padding: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.enoch-barcode-image {
    display: block;
    margin: 0 auto;
}

.enoch-barcode-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: 1px;
    color: #333;
}

.enoch-barcode-name {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* QR Code Container */
.enoch-qrcode-container {
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    padding: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.enoch-qrcode-image {
    display: block;
    margin: 0 auto;
}

/* Product Page Barcode */
.enoch-product-barcode {
    margin: 15px 0;
    clear: both;
}

/* Order Item Barcode */
.enoch-order-item-barcode {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {

    .enoch-barcode-container,
    .enoch-qrcode-container {
        max-width: 100% !important;
    }

    .enoch-barcode-value {
        font-size: 10px;
    }
}