/* modals.css */
.modal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.modal-dialog {
    margin: 10px auto;
    max-width: 95%;
    width: auto;
}

/* Modal Meus Pedidos e Detalhes - ajuste específico */
#modalMeusPedidos .modal-dialog,
#modalDetalhesPedido .modal-dialog {
    max-width: 98%;
    margin: 5px auto;
}

.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 70vh;
}

/* Ajustes para tabelas em modais */
.modal-body .table-responsive {
    margin: -15px -20px;
    width: calc(100% + 40px);
}

/* ===== STATUS ===== */
#pedido-status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.status-pago {
    background-color: #d4edda;
    color: #155724;
}

.status-pendente {
    background-color: #fff3cd;
    color: #856404;
}

.status-cancelado {
    background-color: #f8d7da;
    color: #721c24;
}

#pedido-itens img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}