/* LPR Specs Table Widget Styles */

.lpr-specs-container {
    box-sizing: border-box;
}

.specs-title {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.specs-table {
    width: 100%;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.specs-label,
.specs-value {
    box-sizing: border-box;
}

.specs-value.value-bold {
    font-weight: 600;
}

/* Mobile Stack Layout */
@media (max-width: 767px) {
    .specs-row.mobile-stack {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .specs-row.mobile-stack .specs-label,
    .specs-row.mobile-stack .specs-value {
        flex: 0 0 100% !important;
        width: 100%;
        text-align: left !important;
    }
}
