#inventory-popup {
    width: 45%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 1000;
    margin: 15px 0;
    display: none;
}

#inventory-popup.hidden {
    display: none;
}

.popup-content {
    position: relative;
}

#close-popup {
    position: absolute;
    top: -20px;
    left: 5px;
    font-size: 30px;
    cursor: pointer;
}
.popup-content h3 {
    font-size: 25px;
    font-weight: 600;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid #ddd;
    text-align: left;
}
#inventory-popup table, #inventory-popup th, #inventory-popup td {
    text-align: right;
    padding: 5px;
    font-weight: 600;
}
#inventory-popup th {
    background: var(--e-global-color-primary);
    color: #FFF;
}
button#check-inventory-button {
    padding: 5px 20px;
    background: #FE0000;
    color: #FFF;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#check-inventory-button:hover {
    background: #FE0000;

    transform: scale(1.05);
}

@media(max-width:786px){
    #inventory-popup {
        width: 100%;
    }
}
span.no_call {
    font-size: 14px;
}