/* Label Print Styles */

/* Screen preview container */
.label-preview-container {
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Base label — no padding here so panels fill edge-to-edge */
.bale-label {
    background: white;
    border: 1px dashed #ccc;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow: hidden;
    display: flex;
}

/* Label inner: full-size row, contains left + right panels */
.bale-label .label-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

/* ── Left panel ─────────────────────────────────────── */
.bale-label .label-left-panel {
    width: 50%;
    height: 100%;
    border-right: 2px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 6px;
    box-sizing: border-box;
    gap: 3px;
}

.bale-label .label-barcode-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}

.bale-label .label-barcode-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}

.bale-label .label-farmer-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bale-label .label-bale-number {
    font-weight: bold;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
}

.bale-label .label-info-row {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bale-label .label-weights {
    font-weight: 600;
}

/* ── Company logo ───────────────────────────────────── */
.bale-label .label-logo-wrap {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

.bale-label .label-logo {
    max-height: 22px;
    max-width: 90%;
    object-fit: contain;
}

/* ── Right panel: 4 equal boxes ─────────────────────── */
.bale-label .label-right-panel {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.bale-label .label-entry-box {
    flex: 1;
    border-bottom: 1.5px solid #555;
    padding: 4px 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.bale-label .label-entry-box.last {
    border-bottom: none;
}

.bale-label .label-entry-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #222;
    display: block;
    line-height: 1.2;
}

/* ── Size variants ───────────────────────────────────── */

/* 150 x 100 mm — landscape (official size) */
.bale-label.size-150x100 {
    width: 480px;
    height: 320px;
}

.bale-label.size-150x100 .label-bale-number { font-size: 20px; }
.bale-label.size-150x100 .label-info-row    { font-size: 13px; }
.bale-label.size-150x100 .label-weights     { font-size: 20px; font-weight: bold; }
.bale-label.size-150x100 .label-entry-label { font-size: 12px; }
.bale-label.size-150x100 .label-logo        { max-height: 75px; }

/* 100 x 60 mm — landscape */
.bale-label.size-100x60 {
    width: 420px;
    height: 224px;
}

.bale-label.size-100x60 .label-bale-number { font-size: 14px; }
.bale-label.size-100x60 .label-info-row    { font-size: 10px; }
.bale-label.size-100x60 .label-weights     { font-size: 14px; font-weight: bold; }
.bale-label.size-100x60 .label-entry-label { font-size: 10px; }

/* 100 x 75 mm — landscape */
.bale-label.size-100x75 {
    width: 420px;
    height: 280px;
}

.bale-label.size-100x75 .label-bale-number { font-size: 15px; }
.bale-label.size-100x75 .label-info-row    { font-size: 11px; }
.bale-label.size-100x75 .label-weights     { font-size: 15px; font-weight: bold; }
.bale-label.size-100x75 .label-entry-label { font-size: 11px; }

/* 60 x 100 mm — portrait label, rotate content 90° */
.bale-label.size-60x100 {
    width: 227px;
    height: 378px;
}

.bale-label.size-60x100 .label-inner {
    transform: rotate(90deg);
    transform-origin: center center;
    width: 378px;
    height: 227px;
    position: relative;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}

.bale-label.size-60x100 .label-bale-number { font-size: 12px; }
.bale-label.size-60x100 .label-info-row    { font-size: 9px; }
.bale-label.size-60x100 .label-weights     { font-size: 12px; font-weight: bold; }
.bale-label.size-60x100 .label-entry-label { font-size: 9px; }
