#barcode-overlay_inverter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#barcode-popup_inverter {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 1000;
    width: 30%;
}

body.no-scroll {
    overflow: hidden;
}

div#sn-auth-container_inverter {
    text-align: center;
}

input#barcode-input_inverter {
    width: 100%;
    line-height: 3;
    padding: 0px 20px 0px 20px;
    border: none;
    border-bottom: 1px solid black;
    margin-bottom: 20px;
    font-size: 17px;
    text-transform: uppercase;
}

input#barcode-input_inverter:focus {
    outline: none;
}

button#verify-barcode_inverter {
    width: 6rem;
    height: 2.5rem;
    font-size: 15px;
    background-color: #e9a825;
    border: none;
    border-radius: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

button#verify-barcode_inverter:focus-visible {
    outline: none;
}

button#close-popup_inverter {
    width: 5rem;
    height: 2.5rem;
    border-radius: 20px;
    border: none;
    background-color: #E9A825;
    color: #FFFFFF;
    cursor: pointer;
}

p#verification-result_inverter {
    color: red;
    font-size: 16px;
}

.sn-verify-warpper-inverter {
    max-width: 500px; 
    margin: 20px auto; 
    font-family: Arial, sans-serif; 
    border: 1px solid #e5e5e5; 
    border-radius: 10px; 
    padding: 20px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
}

.icon-txt-wrapper-inverter {
    display: flex; 
    align-items: center; 
    margin-bottom: 15px;
}

.success-icon-inverter {
    background: #4CAF50; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;  
    font-size: 13px;
    padding: 7px 7px;
}

.error-icon-inverter {
    background: #F44336;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 12px;
    padding: 7px 7px;
}

.verify-text-inverter {
    font-size: 18px; 
    font-weight: bold;
}

.row-wrapper-inverter {
    border-top: 1px solid #EEEEEE; 
    padding: 10px 0; 
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.data-title-inverter {
    color: #555555;
    font-size: 16px;
}

.data-value-inverter {
    font-weight: bold;
    font-size: 16px;
}

.success-inverter {
	color: green;
    font-weight: 600;
}


@media screen and (max-width: 1000px) {
    #barcode-popup_inverter {
        width: 85%;
    }
}




