/* ISBN Barcode Generator — Elementor Widget CSS */

/* Widget wrapper */
.ibg-el-widget {
    display: inline-block;
    width: 100%;
}

/* Barcode container */
.ibg-el-barcode-wrap {
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 0; /* removes inline-block gap under SVG */
}

/* The SVG/img itself fills the container */
.ibg-el-barcode svg,
.ibg-el-barcode img {
    display: block;
    width: 100%;
    height: auto;
}

/* Link wrapper */
.ibg-el-link {
    display: inline-block;
    line-height: 0;
}

/* Title below barcode */
.ibg-el-title {
    display: block;
    margin: 8px 0 0;
    line-height: 1.4;
}

/* ISBN label below barcode */
.ibg-el-isbn-label {
    display: block;
    margin: 4px 0 0;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #666;
    font-family: monospace;
    line-height: 1.3;
}

/* Editor placeholders */
.ibg-el-placeholder,
.ibg-el-preview-notice {
    background: #f6f7f8;
    border: 2px dashed #d5d8dc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.ibg-el-placeholder .eicon-barcode {
    font-size: 32px;
    color: #bdc3c7;
    display: block;
    margin-bottom: 8px;
}

/* Error state */
.ibg-el-error {
    padding: 10px 14px;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 3px;
    font-size: 13px;
    color: #991b1b;
}
