/* Stili custom per Baunz WC lista riordini */

/* Modal salva ordine */
#baunz-save-order-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.baunz-modal-content {
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    min-width: 300px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    text-align: center;
}
.baunz-modal-content h3 {
    margin-top: 0;
}
.baunz-modal-buttons {
    margin-top: 1.5em;
    display: flex;
    gap: 1em;
    justify-content: center;
}
#baunz-nome-ordine {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#baunz-modal-salva {
    background-color: #222;
    border-color: #222;
    border-radius: 3px;
    color: #fff;
    font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif;
    padding: .2em .5em;
    cursor: pointer;
}
#baunz-modal-annulla {
    background-color: #C4C4C4;
    border-color: #C4C4C4;
    border-radius: 3px;
    color: #222;
    font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif;
    padding: .2em .5em;
    cursor: pointer;
}

/* Lista ordini salvati */
.baunz-saved-orders-container {
    padding: 4em 0;
}
.baunz-saved-orders-container table {
    margin: 2em 0 !important;
}